matrix-php-sdk/composer.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2013-08-07 17:33:05 +00:00
{
"name": ":vendor/:package_name",
2016-01-13 18:29:55 +00:00
"type": "library",
2013-08-07 17:33:05 +00:00
"description": ":package_description",
"keywords": [
":vendor",
2014-12-30 15:31:21 +00:00
":package_name"
2013-08-07 17:33:05 +00:00
],
"homepage": "https://github.com/:vendor/:package_name",
2013-08-07 17:33:05 +00:00
"license": "MIT",
"authors": [
{
"name": ":author_name",
2014-12-30 15:31:21 +00:00
"email": ":author_email",
"homepage": ":author_website",
2013-08-07 17:33:05 +00:00
"role": "Developer"
}
],
2014-10-25 11:09:58 +00:00
"require": {
"php" : "~5.6|~7.0"
2014-10-07 09:02:20 +00:00
},
"require-dev": {
"phpunit/phpunit" : "~4.0||~5.0||~6.0",
2016-09-14 15:14:21 +00:00
"squizlabs/php_codesniffer": "^2.3"
2013-08-07 17:33:05 +00:00
},
"autoload": {
2014-10-07 09:02:20 +00:00
"psr-4": {
":vendor\\:package_name\\": "src"
2014-10-07 09:02:20 +00:00
}
},
"autoload-dev": {
"psr-4": {
2016-02-29 07:12:33 +00:00
":vendor\\:package_name\\": "tests"
2014-10-07 09:02:20 +00:00
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
2014-10-07 09:02:20 +00:00
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
2013-08-07 17:33:05 +00:00
}
2016-07-23 19:32:56 +00:00
},
"config": {
"sort-packages": true
2013-08-07 17:33:05 +00:00
}
}