Skip to content

Commit 9d01ac4

Browse files
committed
feat: drop support for php < 8.1,
drop support for symfony < 5.4,
1 parent 963102b commit 9d01ac4

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

Diff for: .github/workflows/static.yml

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18-
- name: Remove phpspec
19-
run: composer remove --dev friends-of-phpspec/phpspec-code-coverage phpspec/phpspec
20-
2118
- name: PHPStan
2219
uses: docker://oskarstark/phpstan-ga
2320
env:

Diff for: .github/workflows/tests.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: tests
22

33
on:
44
push:
5-
branches:
6-
- '*.x'
5+
branches:
6+
- '*.x'
77
pull_request:
88

99
jobs:
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
php: ['7.1', '7.4', '8.2', '8.3']
39+
php: ['8.1']
4040

4141
steps:
4242
- name: Checkout code
@@ -61,12 +61,12 @@ jobs:
6161
strategy:
6262
matrix:
6363
include:
64-
- symfony: '5'
64+
- symfony: '5.4.*'
6565
php-version: '8.1'
66-
- symfony: '6'
66+
- symfony: '6.4.*'
67+
php-version: '8.2'
68+
- symfony: '7.0.*'
6769
php-version: '8.2'
68-
- symfony: '7'
69-
php-version: '8.3'
7070

7171
steps:
7272
- name: Checkout code

0 commit comments

Comments
 (0)