This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
forked from rocketeers/rocketeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rocketeers/rocketeer",
"description": "Rocketeer is a fast and simple deployer for the PHP world",
"homepage": "http://rocketeer.autopergamene.eu",
"license": "MIT",
"keywords": [
"laravel",
"deploy",
"deployment",
"task",
"ssh"
],
"authors": [
{
"name": "Maxime Fabre",
"email": "[email protected]",
"homepage": "http://autopergamene.eu/en"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "^4.2.7",
"illuminate/config": "~4.2",
"illuminate/console": "~4.2",
"illuminate/container": "^4.2.7",
"illuminate/filesystem": "~4.2",
"illuminate/events": "~4.2",
"illuminate/remote": "~4.2",
"illuminate/log": "~4.2",
"patchwork/utf8": "~1.1",
"d11wtq/boris": "~1.0.8",
"kzykhys/parallel": "~0.1.0",
"nesbot/carbon": "~1.18"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"johnkary/phpunit-speedtrap": "^1.0",
"mockery/mockery": "^0.9.1",
"phpseclib/phpseclib": "~0.3.5",
"phpunit/phpunit": "^4.8",
"symfony/var-dumper": "~2.6"
},
"suggest": {
"anahkiasen/rocketeer-campfire": "Campfire plugin to create deployments notifications",
"anahkiasen/rocketeer-slack": "Slack plugin to create deployments notifications",
"ext-pcntl": "Allow parallel deployments"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/php-cs-fixer fix",
"build": "box build --verbose"
},
"bin": [
"bin/rocketeer"
],
"autoload": {
"psr-4": {
"Rocketeer\\": "src/Rocketeer"
}
},
"autoload-dev": {
"psr-4": {
"Rocketeer\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}