Skip to content

Commit

Permalink
Merge pull request #10 from mykiwi-forks/allow-php8.3
Browse files Browse the repository at this point in the history
allow php8.3
  • Loading branch information
mnapoli authored Nov 15, 2023
2 parents 4c62c8c + 2460645 commit 464811e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"constructs": "^10.0.0"
},
"dependencies": {
"@bref.sh/layers": "^2.0.51"
"@bref.sh/layers": "^2.0.62"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
Expand Down
2 changes: 1 addition & 1 deletion src/function/PhpFpmFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { fpmLayer } from '../layers';
import { packagePhpCode } from '../package';

export type PhpFpmFunctionProps = Partial<FunctionProps> & {
phpVersion?: '8.0' | '8.1' | '8.2';
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3';
};

export class PhpFpmFunction extends Function {
Expand Down
2 changes: 1 addition & 1 deletion src/function/PhpFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { IVpc } from 'aws-cdk-lib/aws-ec2';
import { VpcForServerlessApp } from '../vpc/VpcForServerlessApp';

export type PhpFunctionProps = Partial<FunctionProps> & {
phpVersion?: '8.0' | '8.1' | '8.2';
phpVersion?: '8.0' | '8.1' | '8.2' | '8.3';
handler: string;
vpc?: IVpc | VpcForServerlessApp;
};
Expand Down

0 comments on commit 464811e

Please sign in to comment.