Skip to content

Commit

Permalink
Merge pull request #163 from gsteel/stable-php
Browse files Browse the repository at this point in the history
Change default stable PHP from 7.4 to 8.0
  • Loading branch information
Ocramius committed Dec 19, 2022
2 parents d7bf5ca + 1710489 commit 3934950
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ The package can include a configuration file in its root, `.laminas-ci.json`, wh
"ignore_php_platform_requirements": {
"8.0": true
},
"stablePHP": "7.4",
"stablePHP": "8.0",
"additional_composer_arguments": [
]
}
Expand Down
2 changes: 1 addition & 1 deletion src/config/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('config/app', () => {
codeChecks : true,
docLinting : true,
versions : [ '8.1' ],
stablePhpVersion : '7.4',
stablePhpVersion : '8.0',
minimumPhpVersion : '8.1',
latestPhpVersion : '8.1',
lockedDependenciesExists : false,
Expand Down
2 changes: 1 addition & 1 deletion src/config/php.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const PHP_80 = '8.0';
export const PHP_81 = '8.1';
export const PHP_82 = '8.2';

export const CURRENT_STABLE = PHP_74;
export const CURRENT_STABLE = PHP_80;

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

0 comments on commit 3934950

Please sign in to comment.