diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ff20914d..7a8d9d7f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] symfony: ['6.4', '7.0'] php: ['8.1', '8.2', '8.3', '8.4'] - dependency_version: [prefer-lowest, prefer-stable] + dependency_version: [prefer-stable] exclude: - php: '8.1' symfony: '7.0' diff --git a/composer.json b/composer.json index 1f659f0e..c4072f95 100644 --- a/composer.json +++ b/composer.json @@ -69,22 +69,12 @@ "bin/pest" ], "scripts": { - "refacto": "rector", - "lint": "pint", - "test:refacto": "rector --dry-run", - "test:lint": "pint --test", - "test:type:check": "phpstan analyse --ansi --memory-limit=-1 --debug", - "test:type:coverage": "php -d memory_limit=-1 bin/pest --type-coverage --min=100", "test:unit": "php bin/pest --colors=always --exclude-group=integration --compact", "test:inline": "php bin/pest --colors=always --configuration=phpunit.inline.xml", "test:parallel": "php bin/pest --colors=always --exclude-group=integration --parallel --processes=3", "test:integration": "php bin/pest --colors=always --group=integration", "update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always --update-snapshots", "test": [ - "@test:refacto", - "@test:lint", - "@test:type:check", - "@test:type:coverage", "@test:unit", "@test:parallel", "@test:integration"