forked from froschdesign/zend-expressive-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.42 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
{
"name": "zendframework/zend-expressive-navigation",
"description": "Page, middleware and factories for navigations in a zend-expressive application",
"homepage": "https://docs.zendframework.com/zend-expressive-navigation/",
"license": "BSD-3-Clause",
"keywords": [
"zend",
"zendframework",
"zend-expressive-navigation",
"zend-expressive"
],
"support": {
"docs": "https://docs.zendframework.com/zend-navigation/",
"issues": "https://github.com/zendframework/zend-expressive-navigation/issues",
"source": "https://github.com/zendframework/zend-expressive-navigation",
"rss": "https://github.com/zendframework/zend-expressive-navigation/releases.atom",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/expressive"
},
"require": {
"php": "^7.1",
"psr/http-server-middleware": "^1",
"zendframework/zend-expressive-helpers": "^5",
"zendframework/zend-navigation": "^2.9",
"zendframework/zend-stdlib": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^7.3.1",
"zendframework/zend-coding-standard": "~1",
"zendframework/zend-config": "^3.2",
"zendframework/zend-expressive-zendrouter": "^3",
"zendframework/zend-servicemanager": "^3.3.2"
},
"suggest": {
"zendframework/zend-config": "^3.2, to provide page configuration (optional, as arrays and Traversables are also allowed)",
"zendframework/zend-view": "^2.10, to use the navigation view helpers"
},
"autoload": {
"psr-4": {
"Zend\\Expressive\\Navigation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Expressive\\Navigation\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
},
"zf": {
"config-provider": "Zend\\Expressive\\Navigation\\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",
"upload-coverage": "coveralls -v"
}
}