forked from REBELinBLUE/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
139 lines (139 loc) · 4.92 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
{
"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": ">=7.0.8",
"andywer/js-localization": "dev-laravel-5",
"backup-manager/laravel": "^1.1",
"creativeorange/gravatar": "~1.0",
"doctrine/dbal": "2.5.13",
"fideloper/proxy": "^3.3",
"graham-campbell/binput": "~4.0",
"guzzlehttp/guzzle": "^6.2",
"htmlmin/htmlmin": "~5.0",
"intervention/image": "^2.3",
"laracademy/interactive-make": "^1.1",
"laravel-notification-channels/hipchat": "~1.0",
"laravel-notification-channels/twilio": "~2.0.1",
"laravel-notification-channels/webhook": "~1.1.0",
"laravel/framework": "^5.5",
"laravel/tinker": "1.0.*",
"lubusin/laravel-decomposer": "^1.0",
"mccool/laravel-auto-presenter": "^6.2",
"melihovv/laravel-log-viewer": "^5.5",
"michele-angioni/multi-language": "0.4",
"pda/pheanstalk": "~3.1",
"pragmarx/google2fa": "^1.0.0",
"predis/predis": "~1.0",
"rebelinblue/laravel5-zxcvbn": "^1.0.0",
"tymon/jwt-auth": "~0.5",
"version/version": "^2.2"
},
"require-dev": {
"andreas-weber/php-junit-merge": "^1.0",
"barryvdh/laravel-ide-helper": "^2.4.1",
"block8/php-docblock-checker": "^1.1",
"friendsofphp/php-cs-fixer": "^2.0",
"fzaninotto/faker": "~1.5",
"itsgoingd/clockwork": "~2.0",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"laravel/dusk": "^1.0",
"mockery/mockery": "^1.1",
"php-mock/php-mock-mockery": "^1.3",
"phploc/phploc": "~3.0",
"phpmd/phpmd": "~2.4",
"phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "~2.5",
"symfony/yaml": "^3.2",
"themsaid/laravel-langman": "~1.3.4"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"REBELinBLUE\\Deployer\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"REBELinBLUE\\Deployer\\Tests\\": "tests/"
}
},
"scripts": {
"pre-install-cmd": [
"@php artisan clear-compiled"
],
"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"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"php artisan package:discover"
],
"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": {
"laravel": {
"dont-discover": [
"laravel/dusk",
"laracademy/interactive-make",
"barryvdh/laravel-ide-helper"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.0.8"
}
}
}