-
Notifications
You must be signed in to change notification settings - Fork 185
/
composer.json
150 lines (150 loc) · 5.65 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"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": "stephen@rebelinblue.com",
"homepage": "http://www.rebelinblue.com",
"role": "Developer"
}
],
"support": {
"email": "deployer@stephen.rebelinblue.com",
"issues": "https://github.com/REBELinBLUE/deployer/issues",
"source": "https://github.com/REBELinBLUE/deployer"
},
"require": {
"php": ">=5.6.4",
"andywer/js-localization": "dev-laravel-5",
"backup-manager/laravel": "^1.1",
"creativeorange/gravatar": "~1.0",
"cweagans/composer-patches": "^1.6",
"doctrine/dbal": "~2.5",
"fideloper/proxy": "^3.1",
"graham-campbell/binput": "~3.3",
"htmlmin/htmlmin": "~4.5",
"guzzlehttp/guzzle": "^6.2",
"intervention/image": "^2.3",
"laracademy/interactive-make": "^1.1",
"laravel-notification-channels/hipchat": "~0.2",
"laravel-notification-channels/twilio": "~1.0.2",
"laravel-notification-channels/webhook": "~1.0.2",
"laravel/framework": "^5.4",
"laravel/tinker": "1.0.*",
"lubusin/laravel-decomposer": "^1.0",
"mccool/laravel-auto-presenter": "^5.0",
"melihovv/laravel-log-viewer": "^1.2",
"michele-angioni/multi-language": "0.3",
"pda/pheanstalk": "~3.1",
"pragmarx/google2fa": "^1.0.0",
"predis/predis": "~1.0",
"tymon/jwt-auth": "~0.5",
"rebelinblue/laravel5-zxcvbn": "dev-master",
"version/version": "^2.2"
},
"require-dev": {
"andreas-weber/php-junit-merge": "^1.0",
"barryvdh/laravel-ide-helper": "^2.1",
"block8/php-docblock-checker": "^1.1",
"filp/whoops": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0",
"fzaninotto/faker": "~1.5",
"itsgoingd/clockwork": "~2.0",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"johnkary/phpunit-speedtrap": "^1.0",
"laravel/dusk": "^1.0",
"lstrojny/phpunit-clever-and-smart": "0.*",
"mockery/mockery": "^0.9",
"php-mock/php-mock-mockery": "^1.1",
"phploc/phploc": "~3.0",
"phpmd/phpmd": "~2.4",
"phpunit/phpcov": "3.1.0",
"phpunit/phpunit": "~5.7",
"sebastian/phpcpd": "^3.0",
"spatie/laravel-migrate-fresh": "dev-php56",
"squizlabs/php_codesniffer": "~2.5",
"symfony/yaml": "^3.2",
"themsaid/laravel-langman": "~1.3.4"
},
"repositories": [
{ "type": "vcs", "url": "https://github.com/REBELinBLUE/laravel-migrate-fresh" },
{ "type": "vcs", "url": "https://github.com/REBELinBLUE/laravel5-zxcvbn" }
],
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"REBELinBLUE\\Deployer\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"REBELinBLUE\\Deployer\\Tests\\": "tests/"
}
},
"scripts": {
"pre-install-cmd": [
"@php artisan clear-compiled"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"([ -f .env ] && [ -z \"$TRAVIS\" ] && sed -i 's/DB_TYPE=/DB_CONNECTION=/g' .env) || exit 0",
"([ -f .env ] && [ -z \"$TRAVIS\" ] && php artisan optimize) || exit 0"
],
"pre-update-cmd": [
"@php artisan clear-compiled"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:models --nowrite",
"@php artisan optimize"
],
"test:phpcpd": "phpcpd --progress app/",
"test:lint": "parallel-lint app/ database/ config/ resources/ tests/ public/ bootstrap/ artisan",
"test:loc": "phploc --count-tests app/ database/ resources/ tests/",
"test:phpmd": "phpmd app text phpmd.xml.dist",
"test:phpcs": "phpcs",
"test:phpcs:fix": "php-cs-fixer --no-interaction fix",
"test:phpdoc": "phpdoccheck --directory=app --files-per-line 60",
"test:unit": "phpunit --no-coverage --testsuite 'Unit Tests'",
"test:integration": "phpunit --no-coverage --testsuite 'Integration Tests'"
},
"scripts-descriptions": {
"test:lint": "Check the syntax of all PHP files",
"test:phpcpd": "Check for copy/paste detection",
"test:loc": "Count the number of lines of code",
"test:phpmd": "Run PHP mess detector",
"test:phpcs": "Check the code adheres to PSR-2",
"test:phpcs:fix": "Fix PSR-2 violations",
"test:phpdoc": "Ensure all functions have PHPDoc blocks",
"test:unit": "Run the unit tests",
"test:integration": "Run the integration tests"
},
"extra": {
"patches": {
"michele-angioni/multi-language": {
"Laravel 5.4 support for PHP 5.6": "https://www.phpdeployment.org/patches/0002-Multilanguage.patch"
},
"laravel-notification-channels/twilio": {
"5.4 bug fix": "https://www.phpdeployment.org/patches/0003-dependency-resolution-bug.patch"
}
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "5.6.4"
}
}
}