forked from REBELinBLUE/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
123 lines (123 loc) · 4.14 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
{
"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": ">=7.3",
"andywer/js-localization": "dev-laravel-5",
"backup-manager/laravel": "^1.1",
"creativeorange/gravatar": "~1.0",
"doctrine/dbal": "2.5.13",
"fideloper/proxy": "^4.0",
"graham-campbell/binput": "~5.1",
"guzzlehttp/guzzle": "^6.2",
"htmlmin/htmlmin": "~5.6",
"intervention/image": "^2.3",
"laracademy/interactive-make": "^1.1",
"laravel-notification-channels/twilio": "~2.0.10",
"laravel-notification-channels/webhook": "~1.4.0",
"laravel/framework": "^5.6",
"laravel/tinker": "1.0.*",
"lubusin/laravel-decomposer": "^1.0",
"mccool/laravel-auto-presenter": "^7.0",
"melihovv/laravel-log-viewer": "^5.6",
"michele-angioni/multi-language": "0.4",
"pda/pheanstalk": "~3.1",
"pragmarx/google2fa": "^1.0.0",
"predis/predis": "~1.0",
"rebelinblue/laravel-zxcvbn": "^1.3",
"tymon/jwt-auth": "~0.5",
"version/version": "^2.2"
},
"require-dev": {
"andreas-weber/php-junit-merge": "^1.0",
"barryvdh/laravel-ide-helper": "^2.5",
"friendsofphp/php-cs-fixer": "^2.19.2",
"fakerphp/faker": "~1.16",
"itsgoingd/clockwork": "~2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"mockery/mockery": "^1.1",
"php-mock/php-mock-mockery": "^1.3",
"phpunit/phpcov": "~5.0",
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "~2.5",
"symfony/yaml": "^4.0"
},
"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:lint": "parallel-lint app/ database/ config/ resources/ tests/ public/ bootstrap/ artisan",
"test:phpcs": "phpcs",
"test:phpcs:fix": "php-cs-fixer --no-interaction fix",
"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:phpcs": "Check the code adheres to PSR-2",
"test:phpcs:fix": "Fix PSR-2 violations",
"test:unit": "Run the unit tests",
"test:integration": "Run the integration tests"
},
"extra": {
"laravel": {
"dont-discover": [
"laracademy/interactive-make",
"barryvdh/laravel-ide-helper"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.3"
}
}
}