Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup/remove EOL PHP versions from matrix #196

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 9 additions & 15 deletions laminas-ci.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
Expand All @@ -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": []
Expand Down Expand Up @@ -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"
}
}
Expand Down Expand Up @@ -281,7 +281,7 @@
"examples": [
[
{
"name": "Codeception [7.4, latest]"
"name": "Codeception [8.2, latest]"
}
]
],
Expand All @@ -290,7 +290,7 @@
"title": "The job description to be excluded",
"examples": [
{
"name": "Codeception [7.4, latest]"
"name": "Codeception [8.2, latest]"
}
],
"required": [
Expand All @@ -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]"
]
}
},
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions src/config/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' ]}
Expand All @@ -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);
});
Expand Down
12 changes: 0 additions & 12 deletions src/config/php.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-codeception-dist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-codeception-dist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-codeception-nodist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-codeception-nodist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-composer-require-checker/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-composer-require-checker/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"php": "~7.4.0"
"php": "~8.2.0"
}
}
4 changes: 2 additions & 2 deletions tests/code-check-deprecated-exclusion-via-config/matrix.json
Original file line number Diff line number Diff line change
@@ -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.2, lowest]",
"job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"8.2\",\"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"
}
Expand Down
8 changes: 4 additions & 4 deletions tests/code-check-exclusion-via-config/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -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]"
}
]
}
2 changes: 1 addition & 1 deletion tests/code-check-exclusion-via-config/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"php": "~7.4.0"
"php": "~8.2.0"
}
}
4 changes: 2 additions & 2 deletions tests/code-check-exclusion-via-config/matrix.json
Original file line number Diff line number Diff line change
@@ -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.2, lowest]",
"job": "{\"command\":\"./vendor/bin/phpunit\",\"php\":\"8.2\",\"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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-infection-dist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-infection-dist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-infection-nodist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-infection-nodist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
2 changes: 1 addition & 1 deletion tests/code-check-locked-dependencies/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-locked-dependencies/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-phpbench/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-phpbench/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-phpcs-dist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-phpcs-dist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-phpcs-nodist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-phpcs-nodist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-phpcsfixer-php-dist/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-phpcsfixer-php-dist/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/code-check-phpcsfixer-php/.laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
4 changes: 2 additions & 2 deletions tests/code-check-phpcsfixer-php/matrix.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"stablePHP": "7.4"
"stablePHP": "8.2"
}
Loading