-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.82 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
{
"name": "move-elevator/deployer-tools",
"description": "The Deployer Tools combine multiple deployer recipes for an improved deployment process and workflow.",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Konrad Michalik",
"email": "km@move-elevator.de",
"role": "Maintainer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pcre": "*",
"deployer/deployer": "^7.0",
"sourcebroker/deployer-extended": "^24.0",
"sourcebroker/deployer-loader": "^5.0"
},
"require-dev": {
"armin/editorconfig-cli": "^1.0 || ^2.0",
"eliashaeussler/rector-config": "^4.0",
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.52",
"phpstan/phpstan": "^2.0",
"roave/security-advisories": "dev-latest"
},
"suggest": {
"mittwald/api-client": "Provides the Mittwald API client for deployer recipes."
},
"autoload": {
"psr-4": {
"MoveElevator\\DeployerTools\\Database\\": "src/Database/",
"MoveElevator\\DeployerTools\\Symfony\\": "deployer/symfony/",
"MoveElevator\\DeployerTools\\TYPO3\\": "deployer/typo3/",
"MoveElevator\\DeployerTools\\Utility\\": "src/Utility/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec",
"lint:php": "@fix:php --dry-run",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse --memory-limit=2G"
}
}