forked from svenluijten/forge-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 953 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": "sven/forge-cli",
"description": "A set of commands to interact with your Laravel Forge servers, sites, and more",
"keywords": ["laravel", "forge", "command", "cli", "laravel forge", "forge api", "laravel api"],
"license": "MIT",
"authors": [
{
"name": "Sven Luijten",
"email": "[email protected]",
"homepage": "https://svenluijten.com"
}
],
"require": {
"php": "^7.2",
"symfony/console": "^4.0",
"symfony/process": "^4.0",
"themsaid/forge-sdk": "^1.2",
"sven/file-config": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Sven\\ForgeCLI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sven\\ForgeCLI\\Tests\\": "tests/"
}
},
"bin": [
"bin/forge"
]
}