-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.36 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
{
"name": "a9f/lifter",
"description": "Tool for automating project upgrades using Rector and other tools",
"license": [
"MIT"
],
"authors": [
{
"name": "Andreas Wolf",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"a9f/fractor": "^0.3",
"rector/rector": "^1.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/process": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"symplify/easy-coding-standard": "^12.1",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"a9f\\Lifter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"a9f\\Lifter\\Tests\\": "tests/"
}
},
"bin": [
"bin/lifter"
],
"config": {
"allow-plugins": {
"a9f/fractor-extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyze:php": "phpstan analyze",
"style:php:check": "ecs",
"style:php:fix": "ecs --fix",
"test:php": "phpunit tests/"
}
}