-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.01 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "ldommer/laravel-ide-helper-refresh",
"description": "Refresh all the Laravel IDE Helper files by executing a single command.",
"keywords": [
"laravel",
"ide",
"helper",
"refresh"
],
"license": "MIT",
"authors": [
{
"name": "Lennart Dommer",
"email": "me@lennart-dommer.de",
"homepage": "https://www.lennart-dommer.de"
}
],
"require": {
"php": ">=7.3",
"barryvdh/laravel-ide-helper": ">=2.4.3",
"illuminate/console": "^6 || ^7 || ^8",
"illuminate/support": "^6 || ^7 || ^8"
},
"autoload": {
"psr-4": {
"Demian2921\\IdeHelperRefresh\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Demian2921\\IdeHelperRefresh\\IdeHelperRefreshServiceProvider"
]
}
}
}