-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
52 lines (51 loc) · 1.34 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
51
52
{
"name": "cakephp/acl",
"description": "Acl Plugin for CakePHP framework",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"acl"
],
"homepage": "https://cakephp.org",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/acl/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/acl/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/acl"
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0",
"cakephp/plugin-installer": "^1.2"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "~4.2.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Acl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acl\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/TestApp"
}
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}