-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.28 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "typo3/cms-backend-access-control",
"type": "typo3-cms-framework",
"description": "The backend access control of TYPO3.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "Artus Kolanowski",
"role": "Developer"
}],
"require": {
"typo3/cms-backend": "10.*@dev",
"typo3/cms-security": "10.*@dev"
},
"require-dev": {
"typo3/testing-framework": "^5.0",
"codacy/coverage": "^1.4",
"slevomat/coding-standard": "^4.8"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"typo3/cms-backend-access-control": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "10.2.x-dev"
},
"typo3/cms": {
"extension-key": "backend_access_control",
"Package": {
"partOfFactoryDefault": true
}
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/typo3-initiatives/security"
}
],
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Backend\\Security\\AccessControl\\": "Classes/Security/AccessControl"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}