-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
30 lines (30 loc) · 1.2 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "darsyn/class-finder",
"license": "MIT",
"type": "library",
"description": "Class Finder by Darsyn for searching for end-user PHP classes.",
"autoload": {
"psr-4": {
"Darsyn\\ClassFinder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Darsyn\\ClassFinder\\Tests\\": "tests/"
}
},
"require": {
"symfony/finder": "~2.8|~3.0|~4.0",
"php": ">=5.4"
},
"require-dev": {
"symfony/http-kernel": "~2.8|~3.0",
"symfony/dependency-injection": "~2.8|~3.0",
"symfony/config": "~2.8|~3.0",
"squizlabs/php_codesniffer": "@stable",
"phpunit/phpunit": "^5"
},
"suggest": {
"symfony/http-kernel": "to search for classes inside bundles registered with AppKernel (Symfony)"
}
}