-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
68 lines (68 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
{
"name": "sulu/sulu-rector",
"type": "rector-extension",
"license": "MIT",
"description": "Rector upgrades rules for Sulu CMS",
"keywords": [
"Upgrade",
"Sulu CMS"
],
"require": {
"php": "^8.1",
"rector/rector": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"jackalope/jackalope-doctrine-dbal": "^1.7",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpstan/phpstan-webmozart-assert": "^1.1",
"phpunit/phpunit": "^9.5.20",
"sulu/sulu": "^2.5@dev",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Sulu\\Rector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sulu\\Rector\\Tests\\": "tests",
"Sulu\\Rector\\Utils\\": "utils"
},
"classmap": [
"stubs"
]
},
"scripts": {
"lint": [
"@php-cs",
"@lint-composer",
"@lint-rector"
],
"fix": [
"@rector",
"@php-cs-fixer"
],
"lint-rector": "@php vendor/bin/rector process --dry-run",
"rector": "@php vendor/bin/rector process",
"lint-composer": "@composer validate --strict",
"phpstan": "@php vendor/bin/phpstan analyze",
"php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fixer": "@php vendor/bin/php-cs-fixer fix",
"test": "@php vendor/bin/phpunit"
},
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"rector/extension-installer": true,
"cweagans/composer-patches": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}