forked from REBELinBLUE/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.88 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rebelinblue/deployer",
"description": "Simple deployment management for PHP projects.",
"minimum-stability": "stable",
"type": "project",
"keywords": ["php", "deployer", "deploy", "deployment"],
"homepage": "http://phpdeployment.org/",
"license": "MIT",
"authors": [
{
"name": "Stephen Ball",
"email": "[email protected]",
"homepage": "http://www.rebelinblue.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/REBELinBLUE/deployer/issues",
"source": "https://github.com/REBELinBLUE/deployer"
},
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"predis/predis": "~1.0",
"graham-campbell/htmlmin": "~4.2",
"pda/pheanstalk": "~3.1",
"creativeorange/gravatar": "~1.0",
"nategood/httpful": "~0.2",
"robclancy/presenter": "1.3.*",
"doctrine/dbal": "~2.5",
"intervention/image": "^2.3",
"graham-campbell/binput": "~3.3",
"itsgoingd/clockwork": "~1.9",
"tymon/jwt-auth": "~0.5",
"pragmarx/google2fa": "^1.0.0",
"version/version": "^2.2",
"andywer/js-localization": "dev-laravel-5",
"backup-manager/laravel": "^1.1",
"fideloper/proxy": "^3.1"
},
"require-dev": {
"fzaninotto/faker": "~1.5",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "5.3.5",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*",
"block8/php-docblock-checker": "^1.0",
"squizlabs/php_codesniffer": "~2.5",
"phpmd/phpmd" : "~2.4",
"phploc/phploc": "~3.0",
"sebastian/phpcpd": "2.0.2",
"filp/whoops": "^2.0",
"codeclimate/php-test-reporter": "^0.3.0",
"barryvdh/laravel-ide-helper": "^2.1",
"themsaid/laravel-langman": "^1.1",
"friendsofphp/php-cs-fixer": "^1.11"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"REBELinBLUE\\Deployer\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"pre-install-cmd": [
"php artisan clear-compiled"
],
"post-install-cmd": [
"([ -f .env ] && php artisan optimize) || exit 0",
"([ -f .env ] && php artisan js-localization:refresh) || exit 0"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan optimize",
"php artisan js-localization:refresh"
]
},
"config": {
"preferred-install": "dist"
}
}