1
0
mirror of https://github.com/danog/class-finder.git synced 2024-12-03 09:57:46 +01:00
class-finder/test/app1/composer.json
Hayden Pierce 93e95fec33 Make test app include the package from packagist.
This is done to allow the test app to autoloading classes because composer will
now autoload from the HaydenPierce/ClassFinder namespace.
2018-08-04 14:41:48 -05:00

21 lines
346 B
JSON

{
"name": "HaydenPierce/testApp",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Hayden Pierce",
"email": "hayden@haydenpierce.com"
}
],
"require-dev": {
"phpunit/phpunit": "6.5",
"haydenpierce/class-finder": "0.0.1"
},
"autoload": {
"psr-4": {
"TestApp1\\": "src/"
}
}
}