-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 983 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
{
"name": "creativeorange/laravel-stubs",
"description": "Extends artisan with more options.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Creativeorange",
"email": "info@creativeorange.nl"
}
],
"require": {
"illuminate/support": "^5|^6|^7|^8|^9|^10",
"illuminate/console": "^5|^6|^7|^8|^9|^10",
"illuminate/filesystem": "^5|^6|^7|^8|^9|^10"
},
"autoload": {
"psr-4": {
"Creativeorange\\LaravelStubs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Creativeorange\\LaravelStubs\\LaravelStubsServiceProvider"
]
}
},
"require-dev": {
"php": ">=7.2",
"orchestra/testbench": "^5.4",
"nunomaduro/larastan": "^0.6.2"
},
"scripts": {
"analyze": "phpstan analyse -c vendor/nunomaduro/larastan/extension.neon -l 5 src/"
}
}