forked from Anahkiasen/janitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 928 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "anahkiasen/janitor",
"description": "Janitor is a tool to help you remove unused code, views and assets from your codebase.",
"license": "MIT",
"keywords": [
"laravel",
"cleanup",
"unused"
],
"authors": [
{
"name": "Maxime Fabre",
"email": "[email protected]",
"homepage": "http://autopergamene.eu/en"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~4.2",
"illuminate/config": "~4.2",
"twig/twig": "^1.18",
"symfony/yaml": "^2.6"
},
"require-dev": {
"illuminate/console": "~4.2",
"illuminate/filesystem": "~4.2",
"illuminate/routing": "~4.2",
"phpunit/phpunit": "^4.6",
"mockery/mockery": "^0.9.4",
"symfony/var-dumper": "^2.6"
},
"autoload": {
"psr-4": {
"Janitor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Janitor\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "stable"
}