Skip to content

Commit 6901dda

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

File tree

3 files changed

+3
-32
lines changed

3 files changed

+3
-32
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-5
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
}
1919
},
2020
"require": {
21-
"php": "^7.4.15 || ^8.0.2",
21+
"php": "^8.0.2",
2222
"ext-json": "*",
23-
"ext-pcre": "*",
24-
"symfony/polyfill-php80": "^1.26"
23+
"ext-pcre": "*"
2524
},
2625
"require-dev": {
2726
"guzzlehttp/psr7": "^2.4.3",
@@ -45,13 +44,11 @@
4544
"tests": "./vendor/bin/phpunit",
4645
"sa": "./vendor/bin/psalm.phar",
4746
"tests-build": [
48-
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:7.4-tests -f hack/7.4.Dockerfile hack",
4947
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.0-tests -f hack/8.0.Dockerfile hack",
5048
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.1-tests -f hack/8.1.Dockerfile hack",
5149
"DOCKER_BUILDKIT=1 docker build -t cloudevents/sdk-php:8.2-tests -f hack/8.1.Dockerfile hack"
5250
],
5351
"tests-docker": [
54-
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:7.4-tests --coverage-html=coverage",
5552
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.0-tests",
5653
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.1-tests",
5754
"docker run -it -v $(pwd):/var/www cloudevents/sdk-php:8.2-tests"

hack/7.4.Dockerfile

-26
This file was deleted.

0 commit comments

Comments
 (0)