forked from lorisleiva/laravel-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "lorisleiva/laravel-deployer",
"description": "Laravel Deployer is a lightweight wrapper of Deployer giving Artisan the power of zero-downtime deployment.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Loris LEIVA",
"email": "[email protected]"
}
],
"require": {
"deployer/deployer": "^6.1",
"deployer/recipes": "^6.0",
"illuminate/support": "5.5.*|5.6.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Lorisleiva\\LaravelDeployer\\": "src/LaravelDeployer"
},
"files": [
"src/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Lorisleiva\\LaravelDeployer\\Test\\": "tests"
},
"files": [
"tests/autoload.php"
]
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Lorisleiva\\LaravelDeployer\\LaravelDeployerServiceProvider"
]
}
}
}