matrix-php-sdk/composer.json
mAAdhaTTah 54f6cbc606 Switch to local phpunit
This ensures consistency across platforms and testing by using the same version of PHPUnit, rather than whatever is globally installed by the system.
2015-07-27 09:24:08 -04:00

44 lines
934 B
JSON

{
"name": "league/:package_name",
"description": ":package_description",
"keywords": [
"league",
":package_name"
],
"homepage": "https://github.com/thephpleague/:package_name",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": ":author_email",
"homepage": ":author_website",
"role": "Developer"
}
],
"require": {
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"League\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Skeleton\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}