diff --git a/laminas-ci.schema.json b/laminas-ci.schema.json index 431cd217..5cf3736d 100644 --- a/laminas-ci.schema.json +++ b/laminas-ci.schema.json @@ -24,12 +24,12 @@ ], "exclude": [ { - "name": "Codeception [7.4, latest]" + "name": "Codeception [8.2, latest]" } ], "ignore_php_platform_requirements": { "8.0": true, - "7.4": false + "8.2": false }, "stablePHP": "8.0", "additional_composer_arguments": [] @@ -50,14 +50,14 @@ "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1", "job": { - "php": "7.4", + "php": "8.2", "command": "find src/ -type f -name \"*.php\" -exec php -l {} \\;" } } ], "ignore_php_platform_requirements": { "8.0": true, - "7.4": false + "8.2": false }, "stablePHP": "8.0", "additional_composer_arguments": [] @@ -95,13 +95,13 @@ [ { "name": "Stringified job", - "job": "{\"php\": \"7.4\", \"command\": \"php -v\"}" + "job": "{\"php\": \"8.2\", \"command\": \"php -v\"}" }, { "name": "JSON object job", "operatingSystem": "debian-latest", "job": { - "php": "7.4", + "php": "8.2", "command": "php -v" } } @@ -281,7 +281,7 @@ "examples": [ [ { - "name": "Codeception [7.4, latest]" + "name": "Codeception [8.2, latest]" } ] ], @@ -290,7 +290,7 @@ "title": "The job description to be excluded", "examples": [ { - "name": "Codeception [7.4, latest]" + "name": "Codeception [8.2, latest]" } ], "required": [ @@ -303,7 +303,7 @@ "description": "The name of the job to be excluded. Must be an exact match.", "minLength": 1, "examples": [ - "Codeception [7.4, latest]" + "Codeception [8.2, latest]" ] } }, @@ -356,12 +356,6 @@ "title": "The php version", "description": "The PHP version to be used. If the wildcard `*` is passed, a list of checks is created containing *every* supported PHP version by the project and the matrix action.", "enum": [ - "5.6", - "7.0", - "7.1", - "7.2", - "7.3", - "7.4", "8.0", "8.1", "8.2", diff --git a/src/config/app.spec.ts b/src/config/app.spec.ts index fe862a9a..dd838bb9 100644 --- a/src/config/app.spec.ts +++ b/src/config/app.spec.ts @@ -5,8 +5,8 @@ describe('config/app', () => { describe('gatherVersions()', () => { test.each` constraint | expected - ${'7.0'} | ${[ '7.0' ]} - ${'^7.0'} | ${[ '7.0', '7.1', '7.2', '7.3', '7.4' ]} + ${'7.0'} | ${[ ]} + ${'^7.0'} | ${[ ]} ${'8.1'} | ${[ '8.1' ]} ${'8.1.0'} | ${[ '8.1' ]} ${'8.1.12'} | ${[ '8.1' ]} @@ -16,8 +16,8 @@ describe('config/app', () => { ${'~8.1'} | ${[ '8.1' ]} ${'~8.1.0'} | ${[ '8.1' ]} ${'~8.1.12'} | ${[ '8.1' ]} - ${'^7.4 || ~8.0.0 || ~8.1.12'} | ${[ '7.4', '8.0', '8.1' ]} - ${'<=8.1.0'} | ${[ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]} + ${'^7.4 || ~8.0.0 || ~8.1.12'} | ${[ '8.0', '8.1' ]} + ${'<=8.1.0'} | ${[ '8.0', '8.1' ]} `('for "$constraint" === $expected', ({constraint, expected}) => { expect(gatherVersions({require: {php: constraint}})).toEqual(expected); }); diff --git a/src/config/php.ts b/src/config/php.ts index 04d5afe8..300449e3 100644 --- a/src/config/php.ts +++ b/src/config/php.ts @@ -1,9 +1,3 @@ -export const PHP_56 = '5.6'; -export const PHP_70 = '7.0'; -export const PHP_71 = '7.1'; -export const PHP_72 = '7.2'; -export const PHP_73 = '7.3'; -export const PHP_74 = '7.4'; export const PHP_80 = '8.0'; export const PHP_81 = '8.1'; export const PHP_82 = '8.2'; @@ -15,12 +9,6 @@ export const CURRENT_STABLE = PHP_80; * If this list is being extended, please also update the `laminas-ci.schema.json` file as well. */ export const INSTALLABLE_VERSIONS = [ - PHP_56, - PHP_70, - PHP_71, - PHP_72, - PHP_73, - PHP_74, PHP_80, PHP_81, PHP_82 diff --git a/tests/code-check-codeception-dist/.laminas-ci.json b/tests/code-check-codeception-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-codeception-dist/.laminas-ci.json +++ b/tests/code-check-codeception-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-codeception-dist/matrix.json b/tests/code-check-codeception-dist/matrix.json index 0591ea85..edde3572 100644 --- a/tests/code-check-codeception-dist/matrix.json +++ b/tests/code-check-codeception-dist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Codeception [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/codecept run\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Codeception [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/codecept run\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-codeception-nodist/.laminas-ci.json b/tests/code-check-codeception-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-codeception-nodist/.laminas-ci.json +++ b/tests/code-check-codeception-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-codeception-nodist/matrix.json b/tests/code-check-codeception-nodist/matrix.json index 0591ea85..edde3572 100644 --- a/tests/code-check-codeception-nodist/matrix.json +++ b/tests/code-check-codeception-nodist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Codeception [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/codecept run\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Codeception [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/codecept run\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-composer-require-checker/.laminas-ci.json b/tests/code-check-composer-require-checker/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-composer-require-checker/.laminas-ci.json +++ b/tests/code-check-composer-require-checker/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-composer-require-checker/matrix.json b/tests/code-check-composer-require-checker/matrix.json index f6e65b22..ae841dbb 100644 --- a/tests/code-check-composer-require-checker/matrix.json +++ b/tests/code-check-composer-require-checker/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Composer Require Checker [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/composer-require-checker check --config-file=composer-require-checker.json -n -v composer.json\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Composer Require Checker [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/composer-require-checker check --config-file=composer-require-checker.json -n -v composer.json\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-deprecated-exclusion-via-config/.laminas-ci.json b/tests/code-check-deprecated-exclusion-via-config/.laminas-ci.json index 40bfd69f..c7a1825e 100644 --- a/tests/code-check-deprecated-exclusion-via-config/.laminas-ci.json +++ b/tests/code-check-deprecated-exclusion-via-config/.laminas-ci.json @@ -1,14 +1,14 @@ { - "stablePHP": "7.4", + "stablePHP": "8.2", "exclude": [ { - "name": "./vendor/bin/codecept run on PHP 7.4" + "name": "./vendor/bin/codecept run on PHP 8.2" }, { - "name": "PHPUnit on PHP 7.4 with locked dependencies" + "name": "PHPUnit on PHP 8.2 with locked dependencies" }, { - "name": "PHPUnit on PHP 7.4 with latest dependencies" + "name": "PHPUnit on PHP 8.2 with latest dependencies" } ] } diff --git a/tests/code-check-deprecated-exclusion-via-config/composer.json b/tests/code-check-deprecated-exclusion-via-config/composer.json index 5109010d..a026b4b0 100644 --- a/tests/code-check-deprecated-exclusion-via-config/composer.json +++ b/tests/code-check-deprecated-exclusion-via-config/composer.json @@ -1,5 +1,5 @@ { "require": { - "php": "~7.4.0" + "php": "~8.1.0" } } diff --git a/tests/code-check-deprecated-exclusion-via-config/matrix.json b/tests/code-check-deprecated-exclusion-via-config/matrix.json index 6bae2663..2add6f94 100644 --- a/tests/code-check-deprecated-exclusion-via-config/matrix.json +++ b/tests/code-check-deprecated-exclusion-via-config/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHPUnit [7.4, lowest]", - "job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"lowest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/phpunit/phpunit/phpunit.xsd phpunit.xml.dist\"]}", + "name": "PHPUnit [8.1, lowest]", + "job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"8.1\",\"extensions\":[],\"ini\":[],\"dependencies\":\"lowest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/phpunit/phpunit/phpunit.xsd phpunit.xml.dist\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-exclusion-via-config/.laminas-ci.json b/tests/code-check-exclusion-via-config/.laminas-ci.json index fcfef52e..491e60be 100644 --- a/tests/code-check-exclusion-via-config/.laminas-ci.json +++ b/tests/code-check-exclusion-via-config/.laminas-ci.json @@ -1,14 +1,14 @@ { - "stablePHP": "7.4", + "stablePHP": "8.2", "exclude": [ { - "name": "Codeception [7.4, locked]" + "name": "Codeception [8.2, locked]" }, { - "name": "PHPUnit [7.4, locked]" + "name": "PHPUnit [8.2, locked]" }, { - "name": "PHPUnit [7.4, latest]" + "name": "PHPUnit [8.2, latest]" } ] } diff --git a/tests/code-check-exclusion-via-config/composer.json b/tests/code-check-exclusion-via-config/composer.json index 5109010d..a026b4b0 100644 --- a/tests/code-check-exclusion-via-config/composer.json +++ b/tests/code-check-exclusion-via-config/composer.json @@ -1,5 +1,5 @@ { "require": { - "php": "~7.4.0" + "php": "~8.1.0" } } diff --git a/tests/code-check-exclusion-via-config/matrix.json b/tests/code-check-exclusion-via-config/matrix.json index 6bae2663..2add6f94 100644 --- a/tests/code-check-exclusion-via-config/matrix.json +++ b/tests/code-check-exclusion-via-config/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHPUnit [7.4, lowest]", - "job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"lowest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/phpunit/phpunit/phpunit.xsd phpunit.xml.dist\"]}", + "name": "PHPUnit [8.1, lowest]", + "job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"8.1\",\"extensions\":[],\"ini\":[],\"dependencies\":\"lowest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/phpunit/phpunit/phpunit.xsd phpunit.xml.dist\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-infection-dist/.laminas-ci.json b/tests/code-check-infection-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-infection-dist/.laminas-ci.json +++ b/tests/code-check-infection-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-infection-dist/matrix.json b/tests/code-check-infection-dist/matrix.json index 174df81a..27f64507 100644 --- a/tests/code-check-infection-dist/matrix.json +++ b/tests/code-check-infection-dist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Infection [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Infection [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-infection-nodist/.laminas-ci.json b/tests/code-check-infection-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-infection-nodist/.laminas-ci.json +++ b/tests/code-check-infection-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-infection-nodist/matrix.json b/tests/code-check-infection-nodist/matrix.json index 174df81a..27f64507 100644 --- a/tests/code-check-infection-nodist/matrix.json +++ b/tests/code-check-infection-nodist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Infection [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Infection [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-infection-roave-static-analysis-plugin-dist/.laminas-ci.json b/tests/code-check-infection-roave-static-analysis-plugin-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-infection-roave-static-analysis-plugin-dist/.laminas-ci.json +++ b/tests/code-check-infection-roave-static-analysis-plugin-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-infection-roave-static-analysis-plugin-nodist/.laminas-ci.json b/tests/code-check-infection-roave-static-analysis-plugin-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-infection-roave-static-analysis-plugin-nodist/.laminas-ci.json +++ b/tests/code-check-infection-roave-static-analysis-plugin-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-locked-dependencies/.laminas-ci.json b/tests/code-check-locked-dependencies/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-locked-dependencies/.laminas-ci.json +++ b/tests/code-check-locked-dependencies/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-locked-dependencies/matrix.json b/tests/code-check-locked-dependencies/matrix.json index 674421db..0fa733c8 100644 --- a/tests/code-check-locked-dependencies/matrix.json +++ b/tests/code-check-locked-dependencies/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Infection [7.4, locked]", - "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Infection [8.2, locked]", + "job": "{\"command\":\"./vendor/bin/infection\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpbench/.laminas-ci.json b/tests/code-check-phpbench/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpbench/.laminas-ci.json +++ b/tests/code-check-phpbench/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpbench/matrix.json b/tests/code-check-phpbench/matrix.json index b6bbaaac..2d7b8fba 100644 --- a/tests/code-check-phpbench/matrix.json +++ b/tests/code-check-phpbench/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHPBench [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/phpbench run --revs=2 --iterations=2 --report=aggregate\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "PHPBench [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/phpbench run --revs=2 --iterations=2 --report=aggregate\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpcs-dist/.laminas-ci.json b/tests/code-check-phpcs-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpcs-dist/.laminas-ci.json +++ b/tests/code-check-phpcs-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpcs-dist/matrix.json b/tests/code-check-phpcs-dist/matrix.json index 56a1496b..3d1339a6 100644 --- a/tests/code-check-phpcs-dist/matrix.json +++ b/tests/code-check-phpcs-dist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHPCodeSniffer [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/phpcs -q --report=checkstyle | cs2pr\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml.dist\"]}", + "name": "PHPCodeSniffer [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/phpcs -q --report=checkstyle | cs2pr\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml.dist\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpcs-nodist/.laminas-ci.json b/tests/code-check-phpcs-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpcs-nodist/.laminas-ci.json +++ b/tests/code-check-phpcs-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpcs-nodist/matrix.json b/tests/code-check-phpcs-nodist/matrix.json index 4378c1e3..20936564 100644 --- a/tests/code-check-phpcs-nodist/matrix.json +++ b/tests/code-check-phpcs-nodist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHPCodeSniffer [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/phpcs -q --report=checkstyle | cs2pr\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml\"]}", + "name": "PHPCodeSniffer [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/phpcs -q --report=checkstyle | cs2pr\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpcsfixer-php-dist/.laminas-ci.json b/tests/code-check-phpcsfixer-php-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpcsfixer-php-dist/.laminas-ci.json +++ b/tests/code-check-phpcsfixer-php-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpcsfixer-php-dist/matrix.json b/tests/code-check-phpcsfixer-php-dist/matrix.json index 18498a93..db5d276a 100644 --- a/tests/code-check-phpcsfixer-php-dist/matrix.json +++ b/tests/code-check-phpcsfixer-php-dist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHP CS Fixer [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/php-cs-fixer fix -v --diff --dry-run\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "PHP CS Fixer [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/php-cs-fixer fix -v --diff --dry-run\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpcsfixer-php/.laminas-ci.json b/tests/code-check-phpcsfixer-php/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpcsfixer-php/.laminas-ci.json +++ b/tests/code-check-phpcsfixer-php/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpcsfixer-php/matrix.json b/tests/code-check-phpcsfixer-php/matrix.json index 18498a93..db5d276a 100644 --- a/tests/code-check-phpcsfixer-php/matrix.json +++ b/tests/code-check-phpcsfixer-php/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "PHP CS Fixer [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/php-cs-fixer fix -v --diff --dry-run\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "PHP CS Fixer [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/php-cs-fixer fix -v --diff --dry-run\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-phpunit-dist-due-to-laminas-ci-json-change/.laminas-ci.json b/tests/code-check-phpunit-dist-due-to-laminas-ci-json-change/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpunit-dist-due-to-laminas-ci-json-change/.laminas-ci.json +++ b/tests/code-check-phpunit-dist-due-to-laminas-ci-json-change/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpunit-dist/.laminas-ci.json b/tests/code-check-phpunit-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpunit-dist/.laminas-ci.json +++ b/tests/code-check-phpunit-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-phpunit-nodist/.laminas-ci.json b/tests/code-check-phpunit-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-phpunit-nodist/.laminas-ci.json +++ b/tests/code-check-phpunit-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-psalm-dist/.laminas-ci.json b/tests/code-check-psalm-dist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-psalm-dist/.laminas-ci.json +++ b/tests/code-check-psalm-dist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-psalm-dist/matrix.json b/tests/code-check-psalm-dist/matrix.json index d89d2b2c..d3dad025 100644 --- a/tests/code-check-psalm-dist/matrix.json +++ b/tests/code-check-psalm-dist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Psalm [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/psalm --shepherd --stats --output-format=github --no-cache\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/vimeo/psalm/config.xsd psalm.xml.dist\"]}", + "name": "Psalm [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/psalm --shepherd --stats --output-format=github --no-cache\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/vimeo/psalm/config.xsd psalm.xml.dist\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-check-psalm-nodist/.laminas-ci.json b/tests/code-check-psalm-nodist/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-check-psalm-nodist/.laminas-ci.json +++ b/tests/code-check-psalm-nodist/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/code-check-psalm-nodist/matrix.json b/tests/code-check-psalm-nodist/matrix.json index 8ee9b3f2..291e1940 100644 --- a/tests/code-check-psalm-nodist/matrix.json +++ b/tests/code-check-psalm-nodist/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Psalm [7.4, latest]", - "job": "{\"command\":\"./vendor/bin/psalm --shepherd --stats --output-format=github --no-cache\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/vimeo/psalm/config.xsd psalm.xml\"]}", + "name": "Psalm [8.2, latest]", + "job": "{\"command\":\"./vendor/bin/psalm --shepherd --stats --output-format=github --no-cache\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[\"xmllint --schema vendor/vimeo/psalm/config.xsd psalm.xml\"]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/code-checks-without-linting-due-to-diff/.laminas-ci.json b/tests/code-checks-without-linting-due-to-diff/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/code-checks-without-linting-due-to-diff/.laminas-ci.json +++ b/tests/code-checks-without-linting-due-to-diff/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/configuration-explicit-job-wildcard-php/matrix.json b/tests/configuration-explicit-job-wildcard-php/matrix.json index 0d9470d9..07ad15cb 100644 --- a/tests/configuration-explicit-job-wildcard-php/matrix.json +++ b/tests/configuration-explicit-job-wildcard-php/matrix.json @@ -1,41 +1,5 @@ { "include": [ - { - "name": "Whatever Check [5.6, latest]", - "job": "{\"command\":\"test\",\"php\":\"5.6\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, - { - "name": "Whatever Check [7.0, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.0\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, - { - "name": "Whatever Check [7.1, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.1\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, - { - "name": "Whatever Check [7.2, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, - { - "name": "Whatever Check [7.3, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.3\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, - { - "name": "Whatever Check [7.4, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", - "operatingSystem": "ubuntu-latest", - "action": "laminas/laminas-continuous-integration-action@v1" - }, { "name": "Whatever Check [8.0, latest]", "job": "{\"command\":\"test\",\"php\":\"8.0\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", diff --git a/tests/doc-linting-doc-book/.laminas-ci.json b/tests/doc-linting-doc-book/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/doc-linting-doc-book/.laminas-ci.json +++ b/tests/doc-linting-doc-book/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/doc-linting-doc-book/matrix.json b/tests/doc-linting-doc-book/matrix.json index e96c79f7..98a032bd 100644 --- a/tests/doc-linting-doc-book/matrix.json +++ b/tests/doc-linting-doc-book/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Documentation Linting [7.4, latest]", - "job": "{\"command\":\"markdownlint doc/book/**/*.md\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Documentation Linting [8.2, latest]", + "job": "{\"command\":\"markdownlint doc/book/**/*.md\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/doc-linting-docs-book/.laminas-ci.json b/tests/doc-linting-docs-book/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/doc-linting-docs-book/.laminas-ci.json +++ b/tests/doc-linting-docs-book/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/doc-linting-docs-book/matrix.json b/tests/doc-linting-docs-book/matrix.json index 9978188c..5778cec9 100644 --- a/tests/doc-linting-docs-book/matrix.json +++ b/tests/doc-linting-docs-book/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Documentation Linting [7.4, latest]", - "job": "{\"command\":\"markdownlint docs/book/**/*.md\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "Documentation Linting [8.2, latest]", + "job": "{\"command\":\"markdownlint docs/book/**/*.md\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/doc-linting-mkdocs/.laminas-ci.json b/tests/doc-linting-mkdocs/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/doc-linting-mkdocs/.laminas-ci.json +++ b/tests/doc-linting-mkdocs/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/doc-linting-mkdocs/matrix.json b/tests/doc-linting-mkdocs/matrix.json index 7e615728..a53e040c 100644 --- a/tests/doc-linting-mkdocs/matrix.json +++ b/tests/doc-linting-mkdocs/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "MkDocs Linting [7.4, latest]", - "job": "{\"command\":\"yamllint -d relaxed --no-warnings mkdocs.yml\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "name": "MkDocs Linting [8.2, latest]", + "job": "{\"command\":\"yamllint -d relaxed --no-warnings mkdocs.yml\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/extensions-from-composer-json/.laminas-ci.json b/tests/extensions-from-composer-json/.laminas-ci.json index c3ad139b..2ecfb389 100644 --- a/tests/extensions-from-composer-json/.laminas-ci.json +++ b/tests/extensions-from-composer-json/.laminas-ci.json @@ -3,7 +3,7 @@ { "name": "Some Job", "job": { - "php": "7.4", + "php": "8.2", "command": "test" } } diff --git a/tests/extensions-from-composer-json/matrix.json b/tests/extensions-from-composer-json/matrix.json index ec05923a..d46bb4b2 100644 --- a/tests/extensions-from-composer-json/matrix.json +++ b/tests/extensions-from-composer-json/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Some Job [7.4, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.4\",\"extensions\":[\"mbstring\",\"json\"],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", + "name": "Some Job [8.2, latest]", + "job": "{\"command\":\"test\",\"php\":\"8.2\",\"extensions\":[\"mbstring\",\"json\"],\"ini\":[],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/no-checks-due-to-diff/.laminas-ci.json b/tests/no-checks-due-to-diff/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/no-checks-due-to-diff/.laminas-ci.json +++ b/tests/no-checks-due-to-diff/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/no-checks-due-to-diff/matrix.json b/tests/no-checks-due-to-diff/matrix.json index c056da11..89f94cc1 100644 --- a/tests/no-checks-due-to-diff/matrix.json +++ b/tests/no-checks-due-to-diff/matrix.json @@ -2,7 +2,7 @@ "include": [ { "name": "No checks", - "job": "{\"command\":\"\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "job": "{\"command\":\"\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/no-checks/.laminas-ci.json b/tests/no-checks/.laminas-ci.json index a912e7b6..6feb2f86 100644 --- a/tests/no-checks/.laminas-ci.json +++ b/tests/no-checks/.laminas-ci.json @@ -1,3 +1,3 @@ { - "stablePHP": "7.4" + "stablePHP": "8.2" } diff --git a/tests/no-checks/matrix.json b/tests/no-checks/matrix.json index c056da11..89f94cc1 100644 --- a/tests/no-checks/matrix.json +++ b/tests/no-checks/matrix.json @@ -2,7 +2,7 @@ "include": [ { "name": "No checks", - "job": "{\"command\":\"\",\"php\":\"7.4\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", + "job": "{\"command\":\"\",\"php\":\"8.2\",\"extensions\":[],\"ini\":[],\"dependencies\":\"locked\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[],\"before_script\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" } diff --git a/tests/php-ini-from-configuration/.laminas-ci.json b/tests/php-ini-from-configuration/.laminas-ci.json index 9259c134..28fc2828 100644 --- a/tests/php-ini-from-configuration/.laminas-ci.json +++ b/tests/php-ini-from-configuration/.laminas-ci.json @@ -7,7 +7,7 @@ { "name": "Some Job", "job": { - "php": "7.4", + "php": "8.2", "command": "test" } } diff --git a/tests/php-ini-from-configuration/matrix.json b/tests/php-ini-from-configuration/matrix.json index 671d7fea..ee329009 100644 --- a/tests/php-ini-from-configuration/matrix.json +++ b/tests/php-ini-from-configuration/matrix.json @@ -1,8 +1,8 @@ { "include": [ { - "name": "Some Job [7.4, latest]", - "job": "{\"command\":\"test\",\"php\":\"7.4\",\"extensions\":[\"mbstring\",\"json\"],\"ini\":[\"error_reporting=E_ALL\"],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", + "name": "Some Job [8.2, latest]", + "job": "{\"command\":\"test\",\"php\":\"8.2\",\"extensions\":[\"mbstring\",\"json\"],\"ini\":[\"error_reporting=E_ALL\"],\"dependencies\":\"latest\",\"ignore_platform_reqs_8\":false,\"ignore_php_platform_requirement\":false,\"additional_composer_arguments\":[]}", "operatingSystem": "ubuntu-latest", "action": "laminas/laminas-continuous-integration-action@v1" }