-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
60 lines (60 loc) · 1.57 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
53
54
55
56
57
58
59
60
{
"name": "phalcon/incubator-acl",
"description": "Phalcon Incubator Access Control List",
"keywords": [
"framework",
"phalcon",
"incubator",
"acl"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/incubator-acl/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator-acl",
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.2",
"ext-phalcon": "^4.0"
},
"require-dev": {
"phalcon/ide-stubs": "^4.0",
"vimeo/psalm": "^4.1",
"squizlabs/php_codesniffer": "3.5.1",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"mongodb/mongodb": "^1.6",
"phpstan/phpstan": "^0.12.18"
},
"autoload": {
"psr-4": {
"Phalcon\\Incubator\\Acl\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": [
"/.github",
"/tests",
".codecov.yml",
"CHANGELOG.md",
"codeception.yml",
"phpcs.xml.dist",
"phpstan.neon.dist",
"psalm.xml.dist"
]
}
}