Skip to content

Commit

Permalink
added php 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Saipriya-1144 committed Dec 25, 2024
1 parent e39ecc3 commit d10a87b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions server/src/stacks/2020-10-01/stacks/web-app-stacks/Php.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { WebAppStack } from '../../models/WebAppStackModel';
import { getDateString } from '../date-utilities';

const getPhpStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateFormat: boolean) => {
const php8Point4EOL = getDateString(new Date('2028/12/31'), useIsoDateFormat);
const php8Point3EOL = getDateString(new Date('2026/11/23'), useIsoDateFormat);
const php8Point2EOL = getDateString(new Date('2025/12/08'), useIsoDateFormat);
const php8Point1EOL = getDateString(new Date('2023/11/26'), useIsoDateFormat);
Expand All @@ -22,6 +23,28 @@ const getPhpStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateForma
displayText: 'PHP 8',
value: '8',
minorVersions: [
{
displayText: 'PHP 8.4',
value: '8.4',
stackSettings: {
linuxRuntimeSettings: {
runtimeVersion: 'PHP|8.4',
remoteDebuggingSupported: false,
isHidden: true,
appInsightsSettings: {
isSupported: false,
},
gitHubActionSettings: {
isSupported: true,
supportedVersion: '8.4',
},
supportedFeatures: {
disableSsh: true,
},
endOfLifeDate: php8Point4EOL,
},
},
},
{
displayText: 'PHP 8.3',
value: '8.3',
Expand Down

0 comments on commit d10a87b

Please sign in to comment.