|
95 | 95 | "composer/semver": "^3.4",
|
96 | 96 | "cweagans/composer-patches": "^1.7",
|
97 | 97 | "driftingly/rector-laravel": "^2.0",
|
98 |
| - "ergebnis/composer-normalize": "^2.45", |
| 98 | + "ergebnis/composer-normalize": "^2.47", |
99 | 99 | "ergebnis/json-printer": "^3.7",
|
100 |
| - "ergebnis/rector-rules": "^1.3", |
| 100 | + "ergebnis/rector-rules": "^1.4", |
101 | 101 | "guanguans/ai-commit": "dev-main",
|
102 |
| - "guanguans/monorepo-builder-worker": "^1.4", |
| 102 | + "guanguans/monorepo-builder-worker": "^2.0", |
103 | 103 | "laravel/facade-documenter": "dev-main",
|
104 | 104 | "mockery/mockery": "^1.6",
|
105 | 105 | "nette/utils": "^4.0",
|
106 |
| - "orchestra/testbench": "^7.53 || ^8.0 || ^9.0 || ^10.0", |
| 106 | + "orchestra/testbench": "^7.54 || ^8.0 || ^9.0 || ^10.0", |
107 | 107 | "pestphp/pest": "^1.23 || ^2.0 || ^3.0",
|
108 | 108 | "pestphp/pest-plugin-faker": "^1.0 || ^2.0 || ^3.0",
|
109 | 109 | "pestphp/pest-plugin-laravel": "^1.4 || ^2.0 || ^3.0",
|
|
113 | 113 | "phpstan/phpstan-deprecation-rules": "^2.0",
|
114 | 114 | "phpstan/phpstan-webmozart-assert": "^2.0",
|
115 | 115 | "rector/rector": "^2.0",
|
116 |
| - "rector/swiss-knife": "^2.1", |
117 |
| - "rector/type-perfect": "^2.0", |
| 116 | + "rector/swiss-knife": "^2.2", |
| 117 | + "rector/type-perfect": "^2.1", |
118 | 118 | "shipmonk/composer-dependency-analyser": "^1.8",
|
119 | 119 | "shipmonk/phpstan-baseline-per-identifier": "^2.1",
|
120 | 120 | "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
|
121 |
| - "spaze/phpstan-disallowed-calls": "^4.4", |
| 121 | + "spaze/phpstan-disallowed-calls": "^4.5", |
122 | 122 | "symplify/phpstan-extensions": "^12.0",
|
123 |
| - "symplify/phpstan-rules": "^14.4", |
| 123 | + "symplify/phpstan-rules": "^14.6", |
124 | 124 | "symplify/vendor-patches": "^11.4",
|
125 | 125 | "tomasvotruba/class-leak": "^2.0",
|
126 | 126 | "tomasvotruba/type-coverage": "^2.0",
|
|
250 | 250 | "mark-start": "printf '\\n!\\n!\\t\\033[0;36m%s\\033[0m\\n!\\n\\n' \"Started\"",
|
251 | 251 | "md-fix": "@md-lint --fix",
|
252 | 252 | "md-lint": "lint-md --config .lintmdrc ./*.md ./.github/ ./docs/",
|
| 253 | + "neon-lint": "@php ./vendor/bin/neon-lint *.neon", |
| 254 | + "normalized": "@composer normalize --diff --ansi -v", |
| 255 | + "normalized-dry-run": "@normalized --dry-run", |
253 | 256 | "peck": "/opt/homebrew/opt/php@8.3/bin/php ./vendor/bin/peck check --path=src/ --config=peck.json --ansi -v",
|
254 | 257 | "peck-init": "@peck --init",
|
255 |
| - "pest": "@php ./vendor/bin/pest --coverage", |
| 258 | + "pest": "@php ./vendor/bin/pest --colors=always --min=90 --coverage", |
| 259 | + "pest-bail": "@pest --bail", |
256 | 260 | "pest-coverage": "@pest --coverage-html=./.build/phpunit/ --coverage-clover=./.build/phpunit/clover.xml",
|
| 261 | + "pest-disable-coverage-ignore": "@pest --disable-coverage-ignore", |
257 | 262 | "pest-highest": [
|
258 | 263 | "@putenvs",
|
259 | 264 | "$PHP83 ./vendor/bin/pest --coverage"
|
260 | 265 | ],
|
261 | 266 | "pest-migrate-configuration": "@pest --migrate-configuration",
|
| 267 | + "pest-parallel": "@pest --parallel", |
262 | 268 | "pest-profile": "@pest --profile",
|
263 | 269 | "pest-type-coverage": "@pest --type-coverage",
|
264 | 270 | "pest-update-snapshots": "@pest -d --update-snapshots",
|
|
326 | 332 | "zh-lint": "zhlint {./,docs/,docs/**/}*-zh_CN.md"
|
327 | 333 | },
|
328 | 334 | "scripts-aliases": {
|
329 |
| - "lint": [ |
330 |
| - "php-lint" |
| 335 | + "normalized": [ |
| 336 | + "composer-normalize" |
| 337 | + ], |
| 338 | + "normalized-dry-run": [ |
| 339 | + "composer-normalize-dry-run" |
| 340 | + ], |
| 341 | + "pest": [ |
| 342 | + "test" |
| 343 | + ], |
| 344 | + "pest-bail": [ |
| 345 | + "test-bail" |
| 346 | + ], |
| 347 | + "pest-coverage": [ |
| 348 | + "test-coverage" |
| 349 | + ], |
| 350 | + "pest-disable-coverage-ignore": [ |
| 351 | + "test-disable-coverage-ignore" |
| 352 | + ], |
| 353 | + "pest-highest": [ |
| 354 | + "test-highest" |
| 355 | + ], |
| 356 | + "pest-migrate-configuration": [ |
| 357 | + "test-migrate-configuration" |
| 358 | + ], |
| 359 | + "pest-parallel": [ |
| 360 | + "test-parallel" |
| 361 | + ], |
| 362 | + "pest-profile": [ |
| 363 | + "test-profile" |
| 364 | + ], |
| 365 | + "pest-type-coverage": [ |
| 366 | + "test-type-coverage" |
| 367 | + ], |
| 368 | + "pest-update-snapshots": [ |
| 369 | + "test-update-snapshots" |
331 | 370 | ]
|
332 | 371 | },
|
333 | 372 | "$schema": "https://getcomposer.org/schema.json"
|
|
0 commit comments