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": "zendframework/zend-mvc-plugin-prg",
"description": " ",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"mvc"
],
"homepage": "https://github.com/zendframework/zend-mvc-plugin-prg",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"component": "Zend\\Mvc\\Plugin\\Prg"
}
},
"autoload": {
"psr-4": {
"Zend\\Mvc\\Plugin\\Prg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Mvc\\Plugin\\Prg\\": "test/"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-session": "^2.6.2",
"zendframework/zend-stdlib": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/PHPUnit": "^4.5",
"squizlabs/php_codesniffer": "^2.3.1"
},
"conflict": {
"zendframework/zend-mvc": "<3.0.0"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "coveralls",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}
|