|
77 | 77 | "require": { |
78 | 78 | "php": ">=8.0", |
79 | 79 | "ext-simplexml": "*", |
80 | | - "guzzlehttp/guzzle": "^7.9", |
| 80 | + "guzzlehttp/guzzle": "^7.10", |
81 | 81 | "guzzlehttp/uri-template": "^1.0", |
82 | 82 | "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0" |
83 | 83 | }, |
84 | 84 | "require-dev": { |
85 | | - "azjezz/psl": "^1.9 || ^2.0 || ^3.0", |
| 85 | + "azjezz/psl": "^0.0 || ^1.0 || ^2.0", |
86 | 86 | "bamarni/composer-bin-plugin": "^1.8", |
87 | 87 | "brainmaestro/composer-git-hooks": "^3.0", |
88 | 88 | "composer/composer": "^2.8", |
89 | | - "ergebnis/composer-normalize": "^2.45", |
90 | | - "ergebnis/license": "^2.6", |
| 89 | + "ergebnis/composer-normalize": "^2.48", |
| 90 | + "ergebnis/license": "^2.7", |
91 | 91 | "ergebnis/php-cs-fixer-config": "dev-main", |
92 | | - "ergebnis/rector-rules": "^1.3", |
93 | | - "guanguans/monorepo-builder-worker": "^1.4", |
| 92 | + "ergebnis/rector-rules": "^1.6", |
| 93 | + "guanguans/monorepo-builder-worker": "^2.1", |
94 | 94 | "illuminate/collections": "^9.52 || ^10.0 || ^11.0 || ^12.0", |
95 | 95 | "illuminate/support": "^9.52 || ^10.0 || ^11.0 || ^12.0", |
96 | 96 | "infection/extension-installer": "^0.1", |
97 | 97 | "infection/infection": "^0.26", |
98 | 98 | "mockery/mockery": "^1.6", |
99 | 99 | "nette/utils": "^4.0", |
100 | | - "pestphp/pest": "^1.23 || ^2.0 || ^3.0", |
101 | | - "pestphp/pest-plugin-faker": "^1.0 || ^2.0 || ^3.0", |
| 100 | + "pestphp/pest": "^1.23 || ^2.0 || ^3.0 || ^4.0", |
| 101 | + "pestphp/pest-plugin-faker": "^1.0 || ^2.0 || ^3.0 || ^4.0", |
102 | 102 | "php-mock/php-mock-phpunit": "^2.13", |
103 | 103 | "phpbench/phpbench": "^1.2", |
104 | 104 | "phpstan/extension-installer": "^1.4", |
105 | 105 | "phpstan/phpstan": "^2.1", |
106 | 106 | "phpstan/phpstan-deprecation-rules": "^2.0", |
107 | 107 | "phpstan/phpstan-webmozart-assert": "^2.0", |
108 | 108 | "povils/phpmnd": "^3.6", |
109 | | - "rector/rector": "^2.0", |
110 | | - "rector/swiss-knife": "^2.1", |
111 | | - "rector/type-perfect": "^2.0", |
| 109 | + "rector/rector": "^2.2", |
| 110 | + "rector/swiss-knife": "^2.3", |
| 111 | + "rector/type-perfect": "^2.1", |
112 | 112 | "shipmonk/composer-dependency-analyser": "^1.8", |
113 | | - "shipmonk/phpstan-baseline-per-identifier": "^2.1", |
114 | | - "spaze/phpstan-disallowed-calls": "^4.4", |
| 113 | + "shipmonk/phpstan-baseline-per-identifier": "^2.2", |
| 114 | + "spaze/phpstan-disallowed-calls": "^4.7", |
115 | 115 | "symfony/var-dumper": "^6.0 || ^7.0", |
116 | 116 | "symfony/yaml": "^6.0 || ^7.0", |
117 | 117 | "symplify/phpstan-extensions": "^12.0", |
118 | | - "symplify/phpstan-rules": "^14.5", |
| 118 | + "symplify/phpstan-rules": "^14.8", |
119 | 119 | "tomasvotruba/class-leak": "^2.0", |
120 | 120 | "tomasvotruba/type-coverage": "^2.0", |
121 | 121 | "yamadashy/phpstan-friendly-formatter": "^1.2" |
|
232 | 232 | "mark-start": "printf '\\n!\\n!\\t\\033[0;36m%s\\033[0m\\n!\\n\\n' \"Started\"", |
233 | 233 | "md-fix": "@md-lint --fix", |
234 | 234 | "md-lint": "lint-md --config .lintmdrc ./*.md ./.github/ ./docs/ ./src/*/*.md", |
| 235 | + "normalized": "@composer normalize --diff --ansi -v", |
| 236 | + "normalized-dry-run": "@normalized --dry-run", |
235 | 237 | "peck": "/opt/homebrew/opt/php@8.3/bin/php ./vendor/bin/peck check --path=src/ --config=peck.json --ansi -v", |
236 | 238 | "peck-init": "@peck --init", |
237 | 239 | "pest": "@php ./vendor/bin/pest --coverage", |
|
267 | 269 | "@putenv PHP83=/opt/homebrew/opt/php@8.3/bin/php", |
268 | 270 | "@putenv PHP84=/opt/homebrew/opt/php@8.4/bin/php" |
269 | 271 | ], |
270 | | - "rector": "@php ./vendor/bin/rector --clear-cache --ansi -v", |
| 272 | + "rector": "@php ./vendor/bin/rector --ansi", |
| 273 | + "rector-clear-cache": "@rector --clear-cache", |
| 274 | + "rector-clear-cache-dry-run": "@rector-clear-cache --dry-run", |
271 | 275 | "rector-custom-rule": "@rector custom-rule", |
| 276 | + "rector-debug": "@rector-clear-cache --config=rector-debug.php --debug", |
| 277 | + "rector-debug-dry-run": "@rector-debug --dry-run", |
272 | 278 | "rector-detect-node": "@rector detect-node --loop", |
273 | 279 | "rector-dry-run": "@rector --dry-run", |
274 | 280 | "rector-list-rules": "@rector list-rules", |
| 281 | + "rector-only": "@rector-clear-cache --only=Guanguans\\MonorepoBuilderWorker\\Support\\Rectors\\RenameToPsrNameRector", |
| 282 | + "rector-only-dry-run": "@rector-only --dry-run", |
275 | 283 | "rector-php82": "@rector --config=rector-php82.php", |
276 | 284 | "rector-php82-dry-run": "@rector-php82 --dry-run", |
277 | 285 | "rector-setup-ci": "@rector setup-ci", |
|
304 | 312 | "scripts-aliases": { |
305 | 313 | "lint": [ |
306 | 314 | "php-lint" |
| 315 | + ], |
| 316 | + "normalized": [ |
| 317 | + "composer-normalize" |
| 318 | + ], |
| 319 | + "normalized-dry-run": [ |
| 320 | + "composer-normalize-dry-run" |
307 | 321 | ] |
308 | 322 | }, |
309 | 323 | "$schema": "https://getcomposer.org/schema.json" |
|
0 commit comments