-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 831 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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
31
{
"name": "cbrooks/hunt",
"description": "Utility to hunt down code and report its usage.",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Collin Brooks",
"email": "collin.brooks@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"symfony/symfony": "^3.0",
"symfony/finder": "^3.4",
"symfony/console": "^3.4"
},
"autoload": {
"psr-4": {
"Hunt\\Bundle\\": "src/Hunt/Bundle/",
"Hunt\\Component\\": "src/Hunt/Component/",
"Hunt\\Tests\\": "src/Hunt/Tests/"
}
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^6.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"bin": ["hunt"]
}