This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.64 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
{
"name": "roave/zf1-migration",
"description": "Enables using newer Zend Framework features in a Zend Framework 1 application for easier migration",
"license": "MIT",
"keywords": [
"components",
"zf1",
"zendframework"
],
"support": {
"docs": "https://github.com/roave/zf1-migration#documentation",
"issues": "https://github.com/roave/zf1-migration/issues",
"source": "https://github.com/roave/zf1-migration",
"rss": "https://github.com/roave/zf1-migration/releases.atom"
},
"require": {
"php": "^7.1",
"psr/container": "^1.0",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zendframework1": "^1.12"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"zendframework/zend-coding-standard": "~1.0.0"
},
"autoload": {
"files": [
"src/constants.php",
"src/functions.php"
],
"psr-4": {
"Roave\\Zf1Migration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Roave\\Zf1MigrationTest\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "Roave\\Zf1Migration\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}