Skip to content

Commit

Permalink
PHP 8.4 (#131)
Browse files Browse the repository at this point in the history
* PHP 8.4

* Update supportedPhpVersions.ts

* Update createcloudjob.test.ts

* compiled

* Update createcloudjob.test.ts

* Update createCloudJob.test.ts
  • Loading branch information
eiriksm authored Dec 16, 2024
1 parent bc6a4e9 commit 51de798
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion built/supportedPhpVersions.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion built/supportedPhpVersions.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/supportedPhpVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ module.exports = [
'8.0',
'8.1',
'8.2',
'8.3'
'8.3',
'8.4'
]
3 changes: 2 additions & 1 deletion test/createcloudjob.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import fakeWatchClient from "./src/fakeWatchClient"
import promisify from "../src/promisify"
import * as fakePublisher from "./src/fakePublisher"
const supportedVersions = require("../src/supportedPhpVersions")
const composerVersions = [1, 2]
const composerVersions = [2]

describe('createCloudJob', () => {

Expand Down Expand Up @@ -76,6 +76,7 @@ describe('createCloudJob', () => {
'8.1': 'violinist-81-composer-',
'8.2': 'violinist-82-composer-',
'8.3': 'violinist-83-composer-',
'8.4': 'violinist-84-composer-',
}
for (const delta in supportedVersions) {
for (const cDelta in composerVersions) {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/createCloudJob.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as should from 'should';
import * as AWS from 'aws-sdk'
import { createEcsTaskDefinition, createLogGroup } from "../../src/createCloudJob";
const composerVersions = [1, 2]
const composerVersions = [2]
const supportedVersions = require("../../src/supportedPhpVersions")


Expand Down

0 comments on commit 51de798

Please sign in to comment.