Skip to content

Commit 3934950

Browse files
authored
Merge pull request #163 from gsteel/stable-php
Change default stable PHP from 7.4 to 8.0
2 parents d7bf5ca + 1710489 commit 3934950

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ The package can include a configuration file in its root, `.laminas-ci.json`, wh
146146
"ignore_php_platform_requirements": {
147147
"8.0": true
148148
},
149-
"stablePHP": "7.4",
149+
"stablePHP": "8.0",
150150
"additional_composer_arguments": [
151151
]
152152
}

src/config/app.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('config/app', () => {
3939
codeChecks : true,
4040
docLinting : true,
4141
versions : [ '8.1' ],
42-
stablePhpVersion : '7.4',
42+
stablePhpVersion : '8.0',
4343
minimumPhpVersion : '8.1',
4444
latestPhpVersion : '8.1',
4545
lockedDependenciesExists : false,

src/config/php.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const PHP_80 = '8.0';
88
export const PHP_81 = '8.1';
99
export const PHP_82 = '8.2';
1010

11-
export const CURRENT_STABLE = PHP_74;
11+
export const CURRENT_STABLE = PHP_80;
1212

1313
/**
1414
* NOTE: Please keep this list ordered as the ordering is used to detect the minimum supported version of a project

0 commit comments

Comments
 (0)