forked from laminas/laminas-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.06 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
{
"name": "zendframework/zend-config",
"description": "provides a nested object property based user interface for accessing this configuration data within application code",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"config"
],
"homepage": "https://github.com/zendframework/zend-config",
"autoload": {
"psr-4": {
"Zend\\Config\\": "src/"
}
},
"require": {
"php": "^5.6 || ^7.0",
"ext-json": "*",
"zendframework/zend-stdlib": "^2.7.7 || ^3.1",
"psr/container": "^1.0"
},
"require-dev": {
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-filter": "^2.7.1",
"zendframework/zend-i18n": "^2.7.3",
"zendframework/zend-servicemanager": "^2.7.8 || ^3.2.1",
"malukenho/docheader": "^0.1.5",
"phpunit/phpunit": "^5.7 || ^6.0"
},
"conflict": {
"container-interop/container-interop": "<1.2.0"
},
"suggest": {
"zendframework/zend-filter": "^2.7.1; install if you want to use the Filter processor",
"zendframework/zend-i18n": "^2.7.3; install if you want to use the Translator processor",
"zendframework/zend-servicemanager": "^2.7.8 || ^3.2.1; if you need an extensible plugin manager for use with the Config Factory"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.6-dev",
"dev-develop": "2.7-dev"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Config\\": "test/"
}
},
"scripts": {
"check": [
"@license-check",
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"license-check": "docheader check src/",
"license-check-all": "docheader check src/ test/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}