You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
php-fedora-autoloader/composer.json

49 lines
1.1 KiB

{
"name": "fedora/autoloader",
"description": "Fedora PHP Autoloader",
"keywords": [
"autoload",
"autoloader",
"fedora",
"psr-0",
"psr-4"
],
"homepage": "https://github.com/php-fedora/autoloader",
"license": "MIT",
"authors": [
{
"name": "Shawn Iwinski",
"email": "shawn@iwin.ski"
},
{
"name": "Remi Collet",
"email": "remi@fedoraproject.org"
}
],
"require": {
"php": ">= 5.3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpdocumentor/phpdocumentor": "*",
"phpunit/phpunit": "^4.8.35 || ^5.7.11 || ^6.0.5",
"theseer/autoload": "^1.22"
},
"autoload": {
"files": [
"src/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Fedora\\Autoloader\\Test\\": "tests"
}
},
"scripts": {
"cs": "php-cs-fixer fix",
"phpdoc": "phpdoc -d src -i src/autoload.php -t phpdoc",
"phpcov": "phpunit --coverage-html phpcov",
"test": "phpunit"
}
}