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 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
56 changed files
with
882 additions
and
596 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
coverage_clover: clover.xml | ||
json_path: coveralls-upload.json |
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,9 +1,9 @@ | ||
/doc export-ignore | ||
/test export-ignore | ||
/vendor export-ignore | ||
.coveralls.yml export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml 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,7 +1,4 @@ | ||
nbproject | ||
.idea | ||
.buildpath | ||
.project | ||
.settings/ | ||
.DS_Store | ||
vendor/ | ||
/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 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,34 +1,20 @@ | ||
{ | ||
"name": "zendframework/zend-developer-tools", | ||
"description": "Module for developer and debug tools for use with zend-mvc applications.", | ||
"type": "library", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"zendframework", | ||
"debug", | ||
"developer", | ||
"zf2", | ||
"zf", | ||
"module" | ||
], | ||
"homepage": "https://github.com/zendframework/ZendDeveloperTools", | ||
"authors": [ | ||
{ | ||
"name": "Evan Coury", | ||
"email": "[email protected]", | ||
"homepage": "http://blog.evan.pro/" | ||
}, | ||
{ | ||
"name": "Eric Boh", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.1-dev", | ||
"dev-develop": "1.2-dev" | ||
}, | ||
"zf": { | ||
"module": "ZendDeveloperTools" | ||
} | ||
"support": { | ||
"issues": "https://github.com/zendframework/ZendDeveloperTools/issues", | ||
"source": "https://github.com/zendframework/ZendDeveloperTools", | ||
"rss": "https://github.com/zendframework/ZendDeveloperTools/releases.atom", | ||
"chat": "https://zendframework-slack.herokuapp.com", | ||
"forum": "https://discourse.zendframework.com/c/questions/components" | ||
}, | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
|
@@ -42,7 +28,7 @@ | |
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7.25 || ^6.4.4 || ^7.1", | ||
"squizlabs/php_codesniffer": "~2.3.1" | ||
"zendframework/zend-coding-standard": "~1.0.0" | ||
}, | ||
"suggest": { | ||
"bjyoungblood/bjy-profiler": "Version: dev-master, allows the usage of the (Zend) Db collector.", | ||
|
@@ -63,15 +49,37 @@ | |
"ZendDeveloperToolsTest\\": "test/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.1.x-dev", | ||
"dev-develop": "1.2.x-dev" | ||
}, | ||
"zf": { | ||
"module": "ZendDeveloperTools" | ||
} | ||
}, | ||
"scripts": { | ||
"check": [ | ||
"@cs", | ||
"@cs-check", | ||
"@test" | ||
], | ||
"coveralls": "coveralls", | ||
"cs": "phpcs", | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"test": "phpunit", | ||
"test-coverage": "phpunit --coverage-clover clover.xml" | ||
} | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Evan Coury", | ||
"email": "[email protected]", | ||
"homepage": "http://blog.evan.pro/" | ||
}, | ||
{ | ||
"name": "Eric Boh", | ||
"email": "[email protected]" | ||
} | ||
] | ||
} |
Oops, something went wrong.