-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
50 lines (50 loc) · 1.12 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": "b13/permission-sets",
"type": "typo3-cms-extension",
"description": "Allows for deployable and re-usable permission sets for backend users",
"keywords": ["typo3", "permissions", "acl", "deployment"],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4 || ^13.4"
},
"extra": {
"typo3/cms": {
"extension-key": "permission_sets",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"B13\\PermissionSets\\": "Classes/"
}
},
"require-dev": {
"typo3/cms-dashboard": "^12.4 || ^13.4",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/coding-standards": "^0.8.0",
"typo3/testing-framework": "^8.0",
"b13/permission-sets-examples": "1.0.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"B13\\PermissionSets\\Tests\\": "Tests/"
}
},
"repositories": [
{
"type": "path",
"url": "Build/Packages/*"
}
]
}