Skip to content

Commit fd4f43f

Browse files
committed
remove 7.4 support after EOL
Signed-off-by: John Laswell <[email protected]>
1 parent 7730153 commit fd4f43f

File tree

3 files changed

+3
-31
lines changed

3 files changed

+3
-31
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: ['7.4', '8.0', '8.1', '8.2']
15+
php: ['8.0', '8.1', '8.2']
1616

1717
steps:
1818
- name: Checkout Code

composer.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"require": {
21-
"php": "^7.4.15 || ^8.0.2",
21+
"php": "^8.0.2",
2222
"ext-json": "*",
2323
"ext-pcre": "*",
2424
"symfony/polyfill-php80": "^1.26"
@@ -45,16 +45,14 @@
4545
"tests": "./vendor/bin/phpunit",
4646
"sa": "./vendor/bin/psalm.phar",
4747
"tests-build": [
48-
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:7.4-tests -f hack/7.4.Dockerfile hack",
4948
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.0-tests -f hack/8.0.Dockerfile hack",
5049
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.1-tests -f hack/8.1.Dockerfile hack",
5150
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.2-tests -f hack/8.1.Dockerfile hack"
5251
],
5352
"tests-docker": [
54-
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:7.4-tests --coverage-html=coverage",
5553
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.0-tests",
5654
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.1-tests",
57-
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.2-tests"
55+
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.2-tests --coverage-html=coverage"
5856
]
5957
},
6058
"scripts-descriptions": {

hack/7.4.Dockerfile

-26
This file was deleted.

0 commit comments

Comments
 (0)