forked from recca0120/laravel-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.46 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "recca0120/terminal",
"description": "run laravel artisan command in web application",
"keywords": ["laravel", "artisan", "terminal", "console", "web", "web artisan"],
"license": "MIT",
"authors": [
{
"name": "recca0120",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/console": "^5.1",
"illuminate/database": "^5.1",
"illuminate/filesystem": "^5.1",
"illuminate/routing": "^5.1",
"illuminate/view": "^5.1",
"symfony/finder": "^2.7|^3.0|^4.0",
"webmozart/glob": "^4.1"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "~0.9.4|~1.0",
"nesbot/carbon": "~1.20",
"phpunit/phpunit": "~4.8|~5.4|~6.1|~7.0",
"vlucas/phpdotenv": "^3.3"
},
"autoload": {
"files": [
"src/polyfill.php"
],
"psr-4": {
"Recca0120\\Terminal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\Terminal\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Recca0120\\Terminal\\TerminalServiceProvider"
]
}
}
}