generated from tighten/php-package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.43 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
{
"name": "jakebathman/list-custom-artisan-commands",
"description": "List only Artisan commands that fall under the application's App\\ namespace, using much the same output as php artisan list.",
"keywords": [
"laravel",
"artisan"
],
"type": "library",
"homepage": "https://github.com/jakebathman/list-custom-artisan-commands",
"license": "MIT",
"authors": [
{
"name": "Jake Bathman",
"email": "[email protected]",
"homepage": "https://jake.cat",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"laravel/framework": ">=8.0"
},
"require-dev": {
"orchestra/testbench": "^8.5",
"phpunit/phpunit": "^9.0",
"tightenco/duster": "^1.0"
},
"autoload": {
"psr-4": {
"JakeBathman\\ListCustomArtisanCommands\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JakeBathman\\ListCustomArtisanCommands\\Tests\\": "tests",
"App\\": "tests/app/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"JakeBathman\\ListCustomArtisanCommands\\ListCustomArtisanCommandsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}