This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/32-php-7.2-support'
- Loading branch information
Showing
17 changed files
with
513 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
/test export-ignore | ||
.coveralls.yml export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
composer.lock export-ignore | ||
phpcs.xml export-ignore | ||
phpunit.xml.dist export-ignore | ||
/.coveralls.yml export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.travis.yml export-ignore | ||
/composer.lock export-ignore | ||
/docs/ export-ignore | ||
/phpcs.xml export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/test/ export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
vendor/ | ||
phpunit.xml | ||
clover.xml | ||
coveralls-upload.json | ||
/clover.xml | ||
/coveralls-upload.json | ||
/phpunit.xml | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,20 @@ | ||
{ | ||
"name": "zfcampus/zf-configuration", | ||
"description": "Zend Framework module providing a REST resource for manipulating configuration", | ||
"type": "library", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"zf2", | ||
"zend", | ||
"zf", | ||
"zendframework", | ||
"module", | ||
"rest", | ||
"config" | ||
], | ||
"homepage": "http://apigility.org/", | ||
"support": { | ||
"email": "[email protected]", | ||
"irc": "irc://irc.freenode.net/apigility", | ||
"issues": "https://github.com/zfcampus/zf-configuration/issues", | ||
"source": "https://github.com/zfcampus/zf-configuration", | ||
"issues": "https://github.com/zfcampus/zf-configuration/issues" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3-dev", | ||
"dev-develop": "1.4-dev" | ||
}, | ||
"zf": { | ||
"module": "ZF\\Configuration" | ||
} | ||
"rss": "https://github.com/zfcampus/zf-configuration/releases.atom", | ||
"chat": "https://zendframework-slack.herokuapp.com", | ||
"forum": "https://discourse.zendframework.com/c/questions/apigility" | ||
}, | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
|
@@ -37,7 +24,7 @@ | |
}, | ||
"require-dev": { | ||
"container-interop/container-interop": "^1.1", | ||
"phpunit/phpunit": "^5.7.15 || ^6.0.8", | ||
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5", | ||
"zendframework/zend-coding-standard": "~1.0.0" | ||
}, | ||
"autoload": { | ||
|
@@ -50,6 +37,18 @@ | |
"ZFTest\\Configuration\\": "test/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3.x-dev", | ||
"dev-develop": "1.4.x-dev" | ||
}, | ||
"zf": { | ||
"module": "ZF\\Configuration" | ||
} | ||
}, | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
|
@@ -58,7 +57,6 @@ | |
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml", | ||
"upload-coverage": "coveralls -v" | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml" | ||
} | ||
} |
Oops, something went wrong.