-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
82 lines (82 loc) · 1.94 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
{
"name": "cpsit/migrator",
"description": "Composer package for migrating files with a calculated diff",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Elias Häußler",
"email": "e.haeussler@familie-redlich.de",
"homepage": "https://www.cps-it.de",
"role": "Maintainer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"cypresslab/gitelephant": "^4.5",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/finder": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"armin/editorconfig-cli": "^1.6 || ^2.0",
"cpsit/php-cs-fixer-config": "^1.1",
"ergebnis/composer-normalize": "^2.30",
"friendsofphp/php-cs-fixer": "^3.57",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.1 || ^11.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"CPSIT\\Migrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CPSIT\\Migrator\\Tests\\": "tests/src/"
}
},
"bin": [
"bin/migrator"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "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",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse -c phpstan.neon",
"test": "@test:coverage --no-coverage",
"test:coverage": "phpunit -c phpunit.xml"
}
}