chore: upgrades dev tools

This commit is contained in:
Nuno Maduro
2022-12-07 14:17:44 +00:00
parent 21990ccd8b
commit f940b89284
2 changed files with 6 additions and 5 deletions

View File

@ -28,5 +28,8 @@ jobs:
- name: Types - name: Types
run: composer test:types run: composer test:types
- name: Refacto
run: composer test:refacto
- name: Style - name: Style
run: composer test:lint run: composer test:lint

View File

@ -50,10 +50,8 @@
] ]
}, },
"require-dev": { "require-dev": {
"pestphp/pest-dev-tools": "^2.0.0", "pestphp/pest-dev-tools": "^2.1.0",
"rector/rector": "^0.15.0", "symfony/process": "^6.2.0"
"symfony/process": "^6.2.0",
"symplify/phpstan-rules": "^11.1.17"
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true, "prefer-stable": true,
@ -70,7 +68,7 @@
"scripts": { "scripts": {
"refacto": "rector", "refacto": "rector",
"lint": "pint", "lint": "pint",
"test:refactor": "rector --dry-run", "test:refacto": "rector --dry-run",
"test:lint": "pint --test", "test:lint": "pint --test",
"test:types": "phpstan analyse --ansi --memory-limit=-1 --debug", "test:types": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test:unit": "php bin/pest --colors=always --exclude-group=integration --compact", "test:unit": "php bin/pest --colors=always --exclude-group=integration --compact",