diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-10 08:39:31 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-10 08:39:31 +0100 |
commit | 6112f06e601fcb2d58cf6d30f7084d1fbbfc3e8a (patch) | |
tree | 28fb7aa4d4db7b8cb77b41fb7a0a2a0705228f2b /composer.json | |
parent | af2934d736ca70fa91ce64a9e4968ed73ad8891a (diff) |
rename to php-yoast-phpunit-polyfills3 (compat package)
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/composer.json b/composer.json index ba28086..7495f94 100644 --- a/composer.json +++ b/composer.json @@ -54,7 +54,7 @@ }, "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-main": "4.x-dev" } }, "scripts": { @@ -67,9 +67,6 @@ "lint-gte80": [ "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git" ], - "lint-gte84": [ - "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git" - ], "check-cs": [ "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 7.0-" ], @@ -82,23 +79,22 @@ "coverage": [ "@php ./vendor/phpunit/phpunit/phpunit" ], - "test10": [ - "@php ./vendor/phpunit/phpunit/phpunit -c phpunit10.xml.dist --no-coverage" + "test11": [ + "@php ./vendor/phpunit/phpunit/phpunit -c phpunit11.xml.dist --no-coverage" ], - "coverage10": [ - "@php ./vendor/phpunit/phpunit/phpunit -c phpunit10.xml.dist" + "coverage11": [ + "@php ./vendor/phpunit/phpunit/phpunit -c phpunit11.xml.dist" ] }, "scripts-descriptions": { "lint7": "Check the PHP files for parse errors. (PHP 7.1 - 7.4)", "lint70": "Check the PHP files for parse errors. (PHP 7.0)", - "lint-gte80": "Check the PHP files for parse errors. (PHP 8.0 - 8.3)", - "lint-gte84": "Check the PHP files for parse errors. (PHP 8.4+)", + "lint-gte80": "Check the PHP files for parse errors. (PHP 8.0+)", "check-cs": "Check the PHP files for code style violations and best practices.", "fix-cs": "Auto-fix code style violations in the PHP files.", "test": "Run the unit tests without code coverage (PHPUnit < 10).", "coverage": "Run the unit tests with code coverage (PHPUnit < 10).", - "test10": "Run the unit tests without code coverage using the PHPUnit 10/11 configuration file.", - "coverage10": "Run the unit tests with code coverage using the PHPUnit 10/11 configuration file." + "test11": "Run the unit tests without code coverage using the PHPUnit 11 configuration file.", + "coverage11": "Run the unit tests with code coverage using the PHPUnit 11 configuration file." } } |