forked from zendframework/zf1
-
Notifications
You must be signed in to change notification settings - Fork 196
/
composer.json
75 lines (74 loc) · 2.13 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
71
72
73
74
75
{
"name": "shardj/zf1-future",
"description": "Zend Framework 1. The aim is to keep ZF1 working with the latest PHP versions",
"type": "library",
"version": "1.24.2",
"keywords": [
"framework",
"zf1"
],
"homepage": "https://github.com/Shardj/zf1-future/",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1",
"symfony/polyfill-php81": "^1.24",
"symfony/polyfill-ctype": "^1.27",
"symfony/polyfill-mbstring": "^1.26"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^7|^8|^9",
"rector/rector": "0.12.19 || ^1.2",
"yoast/phpunit-polyfills": "^2.0"
},
"suggest": {
"ext-mbstring": "Multibyte strings handling"
},
"autoload": {
"psr-0": {
"Zend_": "library/"
}
},
"include-path": [
"library/"
],
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.12.x-dev"
}
},
"archive": {
"exclude": ["/demos", "/documentation", "/tests"]
},
"replace": {
"zendframework/zendframework1": ">=1.12.20"
},
"scripts": {
"lint": "parallel-lint --exclude vendor --exclude tests/Zend/Loader/_files/ParseError.php .",
"php-cs-fixer:test": "bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer:fix": "bin/php-cs-fixer fix",
"rector:test": "bin/rector process --dry-run",
"rector:fix": "bin/rector process",
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit --bootstrap tests/TestHelper.php tests/Zend/AllTests.php"
]
},
"scripts-descriptions": {
"php-cs-fixer:test": "Run php-cs-fixer",
"php-cs-fixer:fix": "Run php-cs-fixer and fix issues",
"rector:test": "Run rector",
"rector:fix": "Run rector and fix issues"
},
"autoload-dev": {
"psr-0": {
"Zend_": "tests/",
"resources_": "tests/"
}
}
}