Skip to content

Commit be3e04a

Browse files
authored
Merge pull request #14 from rafaelbernard/php84-support
Add support for PHP 8.4
2 parents 464811e + 0250389 commit be3e04a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"constructs": "^10.0.0"
1414
},
1515
"dependencies": {
16-
"@bref.sh/layers": "^2.0.62"
16+
"@bref.sh/layers": "^2.0.95"
1717
},
1818
"devDependencies": {
1919
"@types/lodash": "^4.14.195",

src/function/PhpFpmFunction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { fpmLayer } from '../layers';
66
import { packagePhpCode } from '../package';
77

88
export type PhpFpmFunctionProps = Partial<FunctionProps> & {
9-
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3';
9+
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3' | '8.4';
1010
};
1111

1212
export class PhpFpmFunction extends Function {

src/function/PhpFunction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { IVpc } from 'aws-cdk-lib/aws-ec2';
88
import { VpcForServerlessApp } from '../vpc/VpcForServerlessApp';
99

1010
export type PhpFunctionProps = Partial<FunctionProps> & {
11-
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3';
11+
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3' | '8.4';
1212
handler: string;
1313
vpc?: IVpc | VpcForServerlessApp;
1414
};

0 commit comments

Comments
 (0)