forked from Shardj/zf1-future
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.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
{
"name": "shardj/zf1-future",
"description": "Zend Framework 1. The aim is to keep ZF1 working with the latest PHP versions",
"type": "library",
"keywords": [
"framework",
"zf1"
],
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-0": {
"Zend_": "library/"
}
},
"include-path": [
"library/"
],
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.12.x-dev"
}
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "1.0.0",
"phpunit/dbunit": "1.3.*",
"zf1s/phpunit": "3.7.39"
},
"archive": {
"exclude": ["/demos", "/documentation", "/tests"]
},
"replace": {
"zendframework/zendframework1": ">=1.12.20"
},
"scripts": {
"lint": "parallel-lint --exclude vendor --exclude tests/Zend/Loader/_files/ParseError.php .",
"test": "phpunit"
}
}