Skip to content

Commit 8f7af0a

Browse files
committed
Bump minimum requirements for 2.8
1 parent 53dc4ce commit 8f7af0a

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

.github/workflows/test.yaml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,17 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
php-version:
17-
- '7.4'
18-
- '8.0'
1917
- '8.1'
18+
- '8.2'
19+
- '8.3'
20+
- '8.4'
2021
symfony-version:
21-
- '4.4.*'
22-
- '5.4.*'
23-
- '6.4.*'
24-
exclude:
25-
- php-version: '7.4'
26-
symfony-version: '6.4.*'
27-
- php-version: '8.0'
28-
symfony-version: '6.4.*'
22+
- 'none'
2923
include:
30-
- php-version: '8.2'
31-
symfony-version: '7.0.*'
24+
- php-version: '8.1'
25+
symfony-version: '5.4.*'
26+
- php-version: '8.1'
27+
symfony-version: '6.4.*'
3228
steps:
3329
- name: Checkout
3430
uses: actions/checkout@v6
@@ -45,7 +41,8 @@ jobs:
4541
run: composer validate --no-check-lock
4642

4743
- name: Configure Symfony version
48-
run: composer require --no-update "symfony/config:${{ matrix.symfony-version }}" "symfony/dependency-injection:${{ matrix.symfony-version }}"
44+
run: composer require --no-update "symfony/config:${{ matrix.symfony-version }}" "symfony/dependency-injection:${{ matrix.symfony-version }}" "symfony/event-dispatcher:${{ matrix.symfony-version }}"
45+
if: matrix.symfony-version != 'none'
4946

5047
- name: Install dependencies
5148
run: composer install --prefer-dist --no-progress

composer.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,17 @@
2121
],
2222
"homepage": "https://github.com/FriendsOfBehat/MinkExtension#readme",
2323
"require": {
24-
"php": "^7.4 || ^8",
25-
"behat/behat": "^3.0.5",
24+
"php": "^8.1",
25+
"behat/behat": "^3.20",
2626
"behat/mink": "^1.5",
27-
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0"
27+
"symfony/config": "^5.4 || ^6.4 || ^7.3",
28+
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.3",
29+
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.3"
2830
},
2931
"require-dev": {
3032
"behat/mink-goutte-driver": "^1.1 || ^2.0",
31-
"phpspec/phpspec": "^6.0 || ^7.0 || 7.1.x-dev",
32-
"mink/webdriver-classic-driver": "^1.0@dev"
33+
"phpspec/phpspec": "^7.0 || ^8.0",
34+
"mink/webdriver-classic-driver": "^1.0"
3335
},
3436
"replace": {
3537
"behat/mink-extension": "self.version"

0 commit comments

Comments
 (0)