-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
64 lines (64 loc) · 1.77 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": "zfr/zfr-cors",
"description": "Zend Framework module that let you deal with CORS requests",
"type": "library",
"license": "MIT",
"keywords": [
"zf2",
"zend framework",
"cors",
"rest",
"cross origin sharing resource"
],
"homepage": "https://github.com/zf-fr/zfr-cors",
"authors": [
{
"name": "Florent Blaison",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr/"
}
],
"extra": {
"zf": {
"module": "ZfrCors"
}
},
"require": {
"php": "^7.1",
"zendframework/zend-eventmanager": "^2.6.4 || ^3.2.1",
"zendframework/zend-http": "^2.10",
"zendframework/zend-mvc": "^2.7.15 || ^3.1.1",
"zendframework/zend-servicemanager": "^2.7.9 || ^3.4.0"
},
"require-dev": {
"zendframework/zend-i18n": "^2.9",
"zendframework/zend-log": "^2.10",
"zendframework/zend-modulemanager": "^2.7.2",
"zendframework/zend-serializer": "^2.8",
"zendframework/zend-view": "^2.8.1",
"phpunit/phpunit": "^7.5.18 || ^8.5.1",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-0": {
"ZfrCors\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"ZfrCorsTest\\": "tests/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover build/logs/clover.xml",
"upload-coverage": "php-coveralls -v"
}
}