Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit 754d430

Browse files
committed
Updated composer skeleton
1 parent 88ae496 commit 754d430

File tree

2 files changed

+317
-158
lines changed

2 files changed

+317
-158
lines changed

composer.json

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
11
{
22
"name": "zendframework/zend-expressive-zendviewrenderer",
33
"description": "zend-view PhpRenderer integration for Expressive",
4-
"type": "library",
54
"license": "BSD-3-Clause",
65
"keywords": [
76
"expressive",
87
"http",
98
"middleware",
109
"psr",
1110
"psr-7",
12-
"zf"
11+
"zf",
12+
"zendframework",
13+
"zend-expressive"
1314
],
15+
"config": {
16+
"sort-packages": true
17+
},
1418
"extra": {
1519
"branch-alias": {
1620
"dev-master": "1.4-dev",
1721
"dev-develop": "1.5-dev"
1822
}
1923
},
24+
"support": {
25+
"issues": "https://github.com/zendframework/zend-expressive-zendviewrenderer/issues",
26+
"source": "https://github.com/zendframework/zend-expressive-zendviewrenderer",
27+
"rss": "https://github.com/zendframework/zend-expressive-zendviewrenderer/releases.atom",
28+
"slack": "https://zendframework-slack.herokuapp.com",
29+
"forum": "https://discourse.zendframework.com/c/questions/expressive"
30+
},
2031
"require": {
2132
"php": "^5.6 || ^7.0",
2233
"container-interop/container-interop": "^1.2",
@@ -29,30 +40,30 @@
2940
},
3041
"require-dev": {
3142
"malukenho/docheader": "^0.1.5",
32-
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
43+
"phpunit/phpunit": "^5.7.23 || ^6.4.3",
3344
"zendframework/zend-coding-standard": "~1.0.0"
3445
},
3546
"autoload": {
36-
"psr-4": {
37-
"Zend\\Expressive\\ZendView\\": "src/"
38-
}
47+
"psr-4": {
48+
"Zend\\Expressive\\ZendView\\": "src/"
49+
}
3950
},
4051
"autoload-dev": {
41-
"psr-4": {
42-
"ZendTest\\Expressive\\ZendView\\": "test/"
43-
}
52+
"psr-4": {
53+
"ZendTest\\Expressive\\ZendView\\": "test/"
54+
}
4455
},
4556
"scripts": {
4657
"check": [
4758
"@license-check",
4859
"@cs-check",
4960
"@test"
5061
],
51-
"upload-coverage": "coveralls -v",
52-
"cs-check": "phpcs --colors",
53-
"cs-fix": "phpcbf --colors",
54-
"license-check": "docheader check src/ test/",
62+
"cs-check": "phpcs",
63+
"cs-fix": "phpcbf",
5564
"test": "phpunit --colors=always",
56-
"test-coverage": "phpunit --coverage-clover clover.xml"
65+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
66+
"upload-coverage": "coveralls -v",
67+
"license-check": "vendor/bin/docheader check src/ test/"
5768
}
5869
}

0 commit comments

Comments
 (0)