matrix-php-sdk/composer.json

44 lines
934 B
JSON
Raw Normal View History

2013-08-07 19:33:05 +02:00
{
2015-02-05 21:13:13 +01:00
"name": "league/:package_name",
2013-08-07 19:33:05 +02:00
"description": ":package_description",
"keywords": [
"league",
2014-12-30 16:31:21 +01:00
":package_name"
2013-08-07 19:33:05 +02:00
],
2014-12-30 16:31:21 +01:00
"homepage": "https://github.com/thephpleague/:package_name",
2013-08-07 19:33:05 +02:00
"license": "MIT",
"authors": [
{
"name": ":author_name",
2014-12-30 16:31:21 +01:00
"email": ":author_email",
"homepage": ":author_website",
2013-08-07 19:33:05 +02:00
"role": "Developer"
}
],
2014-10-25 13:09:58 +02:00
"require": {
2014-10-07 11:02:20 +02:00
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"scrutinizer/ocular": "~1.1"
2013-08-07 19:33:05 +02:00
},
"autoload": {
2014-10-07 11:02:20 +02:00
"psr-4": {
"League\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Skeleton\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
2014-10-07 11:02:20 +02:00
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
2013-08-07 19:33:05 +02:00
}
}
}