Skip to content

Commit f10b5d8

Browse files
committed
allow sf8 and test with php 8.5
1 parent 11862cf commit f10b5d8

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/workflows/static.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Static analysis
33
on:
44
push:
55
branches:
6-
- master
6+
- '[0-9]+.x'
7+
- '[0-9]+.[0-9]+'
8+
- '[0-9]+.[0-9]+.x'
79
pull_request:
810

911
jobs:
@@ -13,7 +15,7 @@ jobs:
1315

1416
steps:
1517
- name: Checkout code
16-
uses: actions/checkout@v2
18+
uses: actions/checkout@v6
1719

1820
- name: PHPStan
1921
uses: docker://oskarstark/phpstan-ga

.github/workflows/tests.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: tests
33
on:
44
push:
55
branches:
6-
- master
6+
- '[0-9]+.x'
7+
- '[0-9]+.[0-9]+'
8+
- '[0-9]+.[0-9]+.x'
79
pull_request:
810

911
jobs:
@@ -13,7 +15,7 @@ jobs:
1315
strategy:
1416
fail-fast: false
1517
matrix:
16-
php: ['7.3', '7.4', '8.0', '8.2']
18+
php: ['7.3', '7.4', '8.0', '8.2', '8.3', '8.4', '8.5']
1719
symfony-version: ['*']
1820
include:
1921
- php: '7.4'
@@ -26,10 +28,13 @@ jobs:
2628
symfony-version: 6.0.*
2729
- php: '8.2'
2830
symfony-version: 7.0.*
31+
- php: '8.5'
32+
symfony-version: 8.0.*
33+
2934

3035
steps:
3136
- name: Checkout code
32-
uses: actions/checkout@v2
37+
uses: actions/checkout@v6
3338

3439
- name: Setup PHP
3540
uses: shivammathur/setup-php@v2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.5.0
4+
5+
- Support Symfony 8
6+
- Test with PHP 8.5
7+
- Remove support for PHP < 8.1
8+
39
## 1.4.2 - 2023-12-05
410

511
- Support Symfony 7

composer.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.3 || ^8.0",
15-
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
14+
"php": "^8.1",
15+
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
1616
"php-http/client-common": "^1.9 || ^2.0"
1717
},
1818
"require-dev": {
@@ -32,16 +32,9 @@
3232
"scripts": {
3333
"test": "vendor/bin/simple-phpunit"
3434
},
35-
"extra": {
36-
"branch-alias": {
37-
"dev-master": "1.3-dev"
38-
}
39-
},
4035
"config": {
4136
"allow-plugins": {
4237
"symfony/flex": true
4338
}
44-
},
45-
"prefer-stable": true,
46-
"minimum-stability": "dev"
39+
}
4740
}

0 commit comments

Comments
 (0)