Skip to content

Commit 2bb2be5

Browse files
author
Maciej Koprek
committed
Upgrade bundle with current supported version of PHP and Symfony
1 parent 84f6c28 commit 2bb2be5

File tree

2 files changed

+13
-34
lines changed

2 files changed

+13
-34
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
name: Test
22

3-
on:
4-
push:
5-
branches: [ $default-branch ]
6-
pull_request:
7-
branches: [ $default-branch ]
8-
workflow_dispatch:
3+
on: [push, pull_request]
94

105
jobs:
116
test:
@@ -15,24 +10,9 @@ jobs:
1510

1611
strategy:
1712
matrix:
18-
php-version: ['7.4', '8.4']
19-
symfony-version: ['5.4', '6.4', '7.4']
13+
php-version: ['8.1', '8.2', '8.3', '8.4', '8.5']
14+
symfony-version: ['6.4', '7.4']
2015
coverage: ['none']
21-
exclude:
22-
- php-version: '7.4'
23-
symfony-version: '6.4'
24-
- php-version: '7.4'
25-
symfony-version: '7.0'
26-
include:
27-
- php-version: '8.0'
28-
symfony-version: '5.4'
29-
coverage: xdebug
30-
- php-version: '8.1'
31-
symfony-version: '6.4'
32-
coverage: 'none'
33-
- php-version: '8.2'
34-
symfony-version: '6.4'
35-
coverage: 'none'
3616

3717
steps:
3818
- name: Checkout

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,18 @@
99
}],
1010
"require": {
1111
"php": "^7.4|^8.0",
12-
13-
"symfony/dependency-injection": "^4.4|^5.3|^6.0|^7.0",
14-
"symfony/event-dispatcher": "^4.4|^5.3|^6.0|^7.0",
15-
"symfony/config": "^4.4|^5.3|^6.0|^7.0",
16-
"symfony/yaml": "^4.4|^5.3|^6.0|^7.0",
17-
"symfony/console": "^4.4|^5.3|^6.0|^7.0",
18-
"php-amqplib/php-amqplib": "^2.12.2|^3.0",
19-
"psr/log": "^1.0 || ^2.0 || ^3.0",
20-
"symfony/http-kernel": "^4.4|^5.3|^6.0|^7.0",
21-
"symfony/framework-bundle": "^4.4|^5.3|^6.0|^7.0"
12+
"symfony/dependency-injection": "^6.0 || ^7.0",
13+
"symfony/event-dispatcher": "^6.0 || ^7.0",
14+
"symfony/config": "^6.0 || ^7.0",
15+
"symfony/yaml": "^6.0 || ^7.0",
16+
"symfony/console": "^6.0 || ^7.0",
17+
"php-amqplib/php-amqplib": "^2.12.2 || ^3.0",
18+
"psr/log": "^2.0 || ^3.0",
19+
"symfony/http-kernel": "^6.0 || ^7.0",
20+
"symfony/framework-bundle": "^6.0 || ^7.0"
2221
},
2322
"require-dev": {
24-
"symfony/serializer": "^4.4|^5.3|^6.0|^7.0",
23+
"symfony/serializer": "^6.0 || ^7.0",
2524
"phpunit/phpunit": "^9.5",
2625
"phpstan/phpstan": "^1.2",
2726
"phpstan/phpstan-phpunit": "^1.0"

0 commit comments

Comments
 (0)