-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.26 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
{
"name": "lebarbucodeur/laravel-artisan",
"description": "Some artisan commands into view for Laravel",
"keywords": [
"laravel",
"artisan",
"view"
],
"license": "MIT",
"authors": [
{
"name": "Le Barbu Codeur",
"email": "[email protected]",
"homepage": "https://www.lebarbucodeur.fr",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": ">=0.9",
"orchestra/testbench": "^7.19.0"
},
"autoload": {
"psr-4": {
"LeBarbuCodeur\\LaravelArtisan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LeBarbuCodeur\\LaravelArtisan\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"LeBarbuCodeur\\LaravelArtisan\\LaravelArtisanServiceProvider"
],
"aliases": {
"LaravelArtisan": "LeBarbuCodeur\\LaravelArtisan\\LaravelArtisanFacade"
}
}
},
"minimum-stability": "stable",
"scripts": {
"test": "./vendor/bin/phpunit tests"
}
}