Skip to content

Commit 1a8f2de

Browse files
authored
Merge pull request #82 from francis-roux-serret/feat/add_sf8_php_8.5_support
add sf8 php 8.5 support
2 parents 302d3d7 + 10d8371 commit 1a8f2de

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup PHP
1010
uses: shivammathur/setup-php@v2
1111
with:
12-
php-version: 8.4
12+
php-version: 8.5
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515
- name: composer install

.github/workflows/phpunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- "8.2"
1515
- "8.3"
1616
- "8.4"
17+
- "8.5"
1718
deps:
1819
- "normal"
1920
include:

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
php-version:
1414
- "8.2"
1515
- "8.3"
16+
- "8.4"
17+
- "8.5"
1618
steps:
1719
- name: "Checkout"
1820
uses: "actions/checkout@v2"

.php-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1
1+
8.5

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ php:
1010
- 8.1
1111
- 8.2
1212
- 8.3
13+
- 8.4
14+
- 8.5
1315

1416
before_install:
1517
- composer self-update

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
},
2222
"require": {
2323
"php": "^8.2",
24-
"symfony/form": "^6.4|^7.1",
25-
"symfony/translation": "^6.4|^7.1",
26-
"symfony/serializer": "^6.4|^7.1",
27-
"symfony/validator": "^6.4|^7.1",
24+
"symfony/form": "^6.4|^7.1|^8.0",
25+
"symfony/translation": "^6.4|^7.1|^8.0",
26+
"symfony/serializer": "^6.4|^7.1|^8.0",
27+
"symfony/validator": "^6.4|^7.1|^8.0",
2828
"symfony/translation-contracts": "^1.0|^2.1|^3.0"
2929
},
3030
"require-dev": {

0 commit comments

Comments
 (0)