diff options
| author | Remi Collet <fedora@famillecollet.com> | 2017-03-24 07:12:38 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2017-03-24 07:12:38 +0100 | 
| commit | e6a38be74e14f2030ecf7d74f898ce723ca6d371 (patch) | |
| tree | f3fb80a0363ddb8655b8e16dba286bf62db8eb7e | |
| parent | d4f947170334a74bbf880085a312f2fbc78c0bc2 (diff) | |
missing files
| -rw-r--r-- | composer.json | 48 | 
1 files changed, 48 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..dfde398 --- /dev/null +++ b/composer.json @@ -0,0 +1,48 @@ +{ +    "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": "*", +        "phpdocumentor/phpdocumentor": "*", +        "phpunit/phpunit": "*", +        "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" +    } +}  | 
