-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 922 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
{
"name": "cleverage/permission-bundle",
"description": "Simple permissions based on roles against any PHP object, class or any string",
"keywords": [
"permissions",
"roles"
],
"homepage": "https://github.com/cleverage/permission-bundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"email": "[email protected]",
"homepage": "http://chalnot.fr",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CleverAge\\PermissionBundle\\": ""
}
},
"require": {
"php": ">=7.1",
"symfony/http-kernel": ">=3.0",
"symfony/dependency-injection": ">=3.0",
"symfony/config": ">=3.0",
"symfony/form": ">=3.0",
"symfony/options-resolver": ">=3.0",
"symfony/security-core": ">=3.0"
}
}