-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1015 Bytes
/
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
{
"name": "flextype-plugins/acl",
"type": "project",
"description": "ACL plugin for Flextype.",
"keywords": ["acl", "plugin", "flextype", "php", "html"],
"homepage": "https://github.com/flextype-plugins/acl",
"license": "MIT",
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://flextype.org"
}
],
"support": {
"issues": "https://github.com/flextype-plugins/acl/issues"
},
"require": {
"php": ">=7.4.0",
"ext-json": "*"
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform": {
"php": "7.4.0"
}
},
"autoload": {
"classmap": [
"src/acl"
],
"files": [
"src/acl/helpers/helpers.php"
]
},
"require-dev": {
"doctrine/coding-standard": "9.0.0",
"symfony/var-dumper": "^5.3.6"
}
}