1
0
mirror of https://github.com/danog/class-finder.git synced 2024-11-30 04:29:03 +01:00
class-finder/composer.json

28 lines
677 B
JSON
Raw Normal View History

{
"name": "haydenpierce/class-finder",
2019-02-19 00:48:35 +01:00
"description" : "A library that can provide of a list of classes in a given namespace",
"type": "library",
"license": "MIT",
2019-03-02 18:59:11 +01:00
"version": "0.3.1",
"authors": [
{
"name": "Hayden Pierce",
"email": "hayden@haydenpierce.com"
}
],
2018-09-03 23:51:23 +02:00
"require": {
"php": ">=5.3",
2018-09-03 23:51:23 +02:00
"ext-json": "*"
},
2018-07-21 17:26:01 +02:00
"require-dev": {
"phpunit/phpunit": "4.8.36",
"mikey179/vfsStream": "^1.6"
2018-07-21 17:26:01 +02:00
},
"autoload": {
"psr-4": {
"HaydenPierce\\ClassFinder\\": "src/",
"HaydenPierce\\ClassFinder\\UnitTest\\": "test/unit"
2018-07-21 17:26:01 +02:00
}
}
}