-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "livan2r/deployer",
"description": "A Laravel 5.x automatic application deployment package via git webhooks",
"keywords": ["deploy", "deployment", "laravel", "envoy"],
"license": "MIT",
"authors": [
{
"name": "Livan Rodriguez",
"email": "[email protected]",
"role": "Creator"
}
],
"require": {
"php": ">=5.3.7",
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0",
"laravel/envoy": "^1.5"
},
"require-dev": {
"mockery/mockery": "0.9.0"
},
"autoload": {
"psr-4": {
"Livan2r\\Deployer\\": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5"],
"laravel": {
"providers": [
"Livan2r\\Deployer\\DeployerServiceProvider"
],
"aliases": {
"Deployer": "Livan2r\\Deployer\\Facade\\Deployer"
}
}
},
"minimum-stability": "dev"
}