matrix-php-sdk/composer.json

40 lines
858 B
JSON
Raw Normal View History

2013-08-07 17:33:05 +00:00
{
"name": "league/:package_name",
"description": ":package_description",
"keywords": [
"league",
"package"
],
"homepage": "https://github.com/php-loep/:package_name",
"license": "MIT",
"authors": [
{
"name": ":author_name",
2014-10-07 09:02:20 +00:00
"email": "author_email@example.com",
"homepage": "http://author-website.example.com",
2013-08-07 17:33:05 +00:00
"role": "Developer"
}
],
"require-dev": {
2014-10-07 09:02:20 +00:00
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*"
2013-08-07 17:33:05 +00:00
},
"autoload": {
2014-10-07 09:02:20 +00:00
"psr-4": {
"League\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Skeleton\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
2013-08-07 17:33:05 +00:00
}
}
}