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

31 lines
745 B
JSON
Raw Normal View History

{
2020-10-11 18:01:41 +02:00
"name": "danog/class-finder",
2020-10-13 09:11:09 +02:00
"description": "Fork of haydenpierce/class-finder with support for traits, interfaces and functions",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hayden Pierce",
"email": "hayden@haydenpierce.com"
2020-10-11 18:01:41 +02:00
},
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
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",
2020-10-11 18:32:32 +02:00
"mikey179/vfsstream": "^1.6"
2018-07-21 17:26:01 +02:00
},
"autoload": {
"psr-4": {
2020-10-11 18:01:41 +02:00
"danog\\ClassFinder\\": "src/",
"danog\\ClassFinder\\UnitTest\\": "test/unit"
2018-07-21 17:26:01 +02:00
}
}
}