Skip to content

Commit d314190

Browse files
authored
Merge pull request #54 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 5fdcc4d + 02d8318 commit d314190

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,31 @@ on:
66
- master
77
pull_request:
88
branches:
9-
- "*"
9+
- *
1010
schedule:
1111
- cron: '0 0 * * *'
1212

1313
jobs:
1414
php-tests:
1515
runs-on: ubuntu-20.04
16+
1617
timeout-minutes: 15
18+
1719
env:
1820
COMPOSER_NO_INTERACTION: 1
1921

2022
strategy:
2123
matrix:
2224
php: [8.2, 8.1, 8.0]
23-
laravel: [10.*, 9.*]
25+
laravel: ['9.*', '10.*', '11.*']
2426
dependency-version: [prefer-lowest, prefer-stable]
2527
exclude:
2628
- php: 8.0
2729
laravel: 10.*
30+
- laravel: 11.*
31+
php: 8.1
32+
- laravel: 11.*
33+
php: 8.0
2834

2935
steps:
3036
- name: Checkout code

composer.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"name": "barryvdh/laravel-form-bridge",
33
"description": "This packages integrates Symfony Form Component in Laravel.",
4-
"keywords": ["laravel", "form", "formbuilder", "forms"],
4+
"keywords": [
5+
"laravel",
6+
"form",
7+
"formbuilder",
8+
"forms"
9+
],
510
"license": "MIT",
611
"authors": [
712
{
@@ -11,10 +16,10 @@
1116
],
1217
"require": {
1318
"php": "^8",
14-
"illuminate/support": "^9|^10",
15-
"symfony/form": "^6",
16-
"symfony/validator": "^6",
17-
"symfony/twig-bridge": "^6",
19+
"illuminate/support": "^9|^10|^11.0",
20+
"symfony/form": "^6|^7.0",
21+
"symfony/validator": "^6|^7.0",
22+
"symfony/twig-bridge": "^6|^7.0",
1823
"twig/twig": "^3.3.8"
1924
},
2025
"autoload": {
@@ -38,8 +43,8 @@
3843
}
3944
},
4045
"require-dev": {
41-
"squizlabs/php_codesniffer": "^2.3",
42-
"orchestra/testbench": "^7|^8"
46+
"squizlabs/php_codesniffer": "^2.3|^3.9",
47+
"orchestra/testbench": "^7|^8|^9.0"
4348
},
4449
"scripts": {
4550
"test": "phpunit",

0 commit comments

Comments
 (0)