mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
feat: --profanity
This commit is contained in:
7
.github/workflows/static.yml
vendored
7
.github/workflows/static.yml
vendored
@ -31,8 +31,11 @@ jobs:
|
|||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: composer update --prefer-stable --no-interaction --no-progress --ansi
|
run: composer update --prefer-stable --no-interaction --no-progress --ansi
|
||||||
|
|
||||||
# - name: Type Check
|
- name: Profanity Check
|
||||||
# run: composer test:type:check
|
run: composer test:profanity
|
||||||
|
|
||||||
|
- name: Type Check
|
||||||
|
run: composer test:type:check
|
||||||
|
|
||||||
- name: Type Coverage
|
- name: Type Coverage
|
||||||
run: composer test:type:coverage
|
run: composer test:type:coverage
|
||||||
|
|||||||
@ -18,12 +18,13 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.3.0",
|
"php": "^8.3.0",
|
||||||
"brianium/paratest": "^7.10.1",
|
"brianium/paratest": "^7.10.2",
|
||||||
"nunomaduro/collision": "^8.8.0",
|
"nunomaduro/collision": "^8.8.1",
|
||||||
"nunomaduro/termwind": "^2.3.1",
|
"nunomaduro/termwind": "^2.3.1",
|
||||||
"pestphp/pest-plugin": "^4.0.0",
|
"pestphp/pest-plugin": "^4.0.0",
|
||||||
"pestphp/pest-plugin-arch": "^4.0.0",
|
"pestphp/pest-plugin-arch": "^4.0.0",
|
||||||
"pestphp/pest-plugin-mutate": "^4.0.0",
|
"pestphp/pest-plugin-mutate": "^4.0.0",
|
||||||
|
"pestphp/pest-plugin-profanity": "^4.0.0",
|
||||||
"phpunit/phpunit": "^12.2.1"
|
"phpunit/phpunit": "^12.2.1"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
@ -55,7 +56,7 @@
|
|||||||
"require-dev": {
|
"require-dev": {
|
||||||
"pestphp/pest-dev-tools": "^4.0.0",
|
"pestphp/pest-dev-tools": "^4.0.0",
|
||||||
"pestphp/pest-plugin-type-coverage": "^4.0.0",
|
"pestphp/pest-plugin-type-coverage": "^4.0.0",
|
||||||
"symfony/process": "^7.2.5"
|
"symfony/process": "^7.3.0"
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
@ -74,6 +75,7 @@
|
|||||||
"lint": "pint",
|
"lint": "pint",
|
||||||
"test:refacto": "rector --dry-run",
|
"test:refacto": "rector --dry-run",
|
||||||
"test:lint": "pint --test",
|
"test:lint": "pint --test",
|
||||||
|
"test:profanity": "php bin/pest --profanity --compact --language=en",
|
||||||
"test:type:check": "phpstan analyse --ansi --memory-limit=-1 --debug",
|
"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:type:coverage": "php -d memory_limit=-1 bin/pest --type-coverage --min=100",
|
||||||
"test:unit": "php bin/pest --exclude-group=integration --compact",
|
"test:unit": "php bin/pest --exclude-group=integration --compact",
|
||||||
|
|||||||
Reference in New Issue
Block a user