Changeset 51543
- Timestamp:
- 08/04/2021 06:55:38 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 11 11 .git 12 12 jsdoc 13 composer.lock 13 14 vendor 14 15 packagehash.txt
-
- Property svn:ignore
-
trunk/.gitignore
r51501 r51543 20 20 /wp-cli.local.yml 21 21 /jsdoc 22 /composer.lock 22 23 /vendor 23 24 /src/wp-admin/css/*.min.css -
trunk/composer.json
r49571 r51543 14 14 }, 15 15 "require-dev": { 16 "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0", 16 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", 17 "squizlabs/php_codesniffer": "3.6.0", 17 18 "wp-coding-standards/wpcs": "~2.3.0", 18 "phpcompatibility/phpcompatibility-wp": " ^2.1.0",19 "phpunit/phpunit": "^ 7.5"19 "phpcompatibility/phpcompatibility-wp": "~2.1.2", 20 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" 20 21 }, 21 22 "autoload-dev": { -
trunk/tests/phpunit/includes/bootstrap.php
r51490 r51543 38 38 $phpunit_version = tests_get_phpunit_version(); 39 39 40 if ( version_compare( $phpunit_version, '5. 4', '<' ) || version_compare( $phpunit_version, '8.0', '>=' ) ) {40 if ( version_compare( $phpunit_version, '5.7', '<' ) || version_compare( $phpunit_version, '8.0', '>=' ) ) { 41 41 printf( 42 "Error: Looks like you're using PHPUnit %s. WordPress requires at least PHPUnit 5. 4and is currently only compatible with PHPUnit up to 7.x.\n",42 "Error: Looks like you're using PHPUnit %s. WordPress requires at least PHPUnit 5.7 and is currently only compatible with PHPUnit up to 7.x.\n", 43 43 $phpunit_version 44 44 );
Note: See TracChangeset
for help on using the changeset viewer.