-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
40 lines (40 loc) · 964 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
{
"name": "ahuggins/open-on-make",
"description": "Automatically open files in editor when Artisan make:* is executed",
"license": "MIT",
"authors": [
{
"name": "Andrew Huggins",
"email": "andrewhuggins@gmail.com"
}
],
"require": {
"php" : "~7.3",
"imliam/laravel-env-set-command": "^1.1",
"symfony/finder": "^5.1",
"laravel/helpers": "^1.2",
"illuminate/support": "^7.19",
"illuminate/console": "^7.19"
},
"autoload": {
"psr-4": {
"OpenOnMake\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"OpenOnMake\\Providers\\OpenOnMakeServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"orchestra/testbench": "^5.3"
}
}