-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.01 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
{
"name": "alchemy/acl-bundle",
"type": "symfony-bundle",
"description": "Symfony ACL bundle",
"keywords": [],
"homepage": "https://www.alchemy.fr/",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"doctrine/orm": "^2.6",
"ramsey/uuid-doctrine": "^1.5",
"symfony/event-dispatcher": "^4.0|^5.4|^6.1",
"symfony/framework-bundle": "^4.0|^5.4|^6.1",
"symfony/security-bundle": "^4.0|^5.4|^6.1",
"symfony/validator": "^6.3",
"symfony/yaml": "^4.4|^5.4|^6.1"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/php-cs-fixer fix"
},
"autoload": {
"psr-4": {
"Alchemy\\AclBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Alchemy\\AclBundle\\Tests\\": "/Tests/"
}
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.10",
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^8.4|^10.2.2"
}
}