-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
70 lines (70 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
{
"name": "phalcon/incubator-config",
"description": "Phalcon Incubator Config Adapters",
"keywords": [
"framework",
"phalcon",
"incubator",
"config",
"xml"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalcon.io",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/incubator-config/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator-config",
"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",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"phpstan/phpstan": "^0.12.18"
},
"suggest": {
"ext-simplexml": "Need to run in XML Config Adapter"
},
"autoload": {
"psr-4": {
"Phalcon\\Incubator\\Config\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Incubator\\Config\\Tests\\Unit\\": "tests/unit/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": [
"/.github",
"/tests",
".codacy.yml",
".codecov.yml",
"CHANGELOG.md",
"codeception.yml",
"phpcs.xml.dist",
"phpstan.neon.dist",
"phpunit.xml.dist",
"psalm.xml.dist"
]
}
}