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

Commit

Permalink
Merge pull request #15 from xtreamwayz/feature/composer-template
Browse files Browse the repository at this point in the history
Add composer template
  • Loading branch information
weierophinney committed Nov 7, 2017
2 parents c5f245d + dbfae78 commit 6d1160f
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions template/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "zendframework/<package_name>",
"description": "<package_description, the same like the repository description>",
"homepage": "https://docs.zendframework.com/<package_name>/",
"license": "BSD-3-Clause",
"keywords": [
"zend",
"zendframework",
"<package_name>",
"<individual keywords for current package>"
],
"support": {
"docs": "https://docs.zendframework.com/<package_name>/",
"issues": "https://github.com/zendframework/<package_name>/issues",
"source": "https://github.com/zendframework/<package_name>",
"rss": "https://github.com/zendframework/<package_name>/releases.atom",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/<components|expressive|apigility>"
},
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"zendframework/zend-coding-standard": "~1.0.0"
},
"autoload": {
"psr-4": {
"Zend\\<package_name>\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\<package_name>\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"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"
}
}

0 comments on commit 6d1160f

Please sign in to comment.