-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
49 lines (49 loc) · 939 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
41
42
43
44
45
46
47
48
49
{
"name": "philo/artisan-remote",
"description": "An HTTP API to interact with Laravel Artisan commands.",
"keywords": [
"laravel",
"artisan",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Philo Hermans",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3.0|^8.0",
"sensiolabs/ansi-to-html": "^1.2"
},
"require-dev": {
"orchestra/testbench": "^v5.14.0|^v6.9.0",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"Philo\\ArtisanRemote\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Philo\\ArtisanRemote\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Philo\\ArtisanRemote\\ArtisanRemoteServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}