Skip to content

Commit 33d0913

Browse files
committed
add laravel 10 support
1 parent 63ca886 commit 33d0913

5 files changed

Lines changed: 96 additions & 98 deletions

File tree

.github/workflows/sca.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
php: ['8.1', '8.2']
16-
laravel: ['9.*']
16+
laravel: ['9.*', '10.*']
1717
stability: [prefer-lowest, prefer-stable]
1818

1919
steps:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
php: ['8.1', '8.2']
16-
laravel: ['9.*']
16+
laravel: ['9.*', '10.*']
1717
stability: [prefer-lowest, prefer-stable]
1818

1919
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ __('stream.shared-photos', [
2727
]); // jrmajor added 2 new photos to his stream.
2828
```
2929

30-
This package is a Laravel wrapper around [jrmajor/fluent-php](https://github.com/jrmajor/fluent-php). The current version supports only Laravel 9.
30+
This package is a Laravel wrapper around [jrmajor/fluent-php](https://github.com/jrmajor/fluent-php). The current version supports Laravel 9 and 10.
3131

3232
You may install it via Composer: `composer require jrmajor/laravel-fluent`. The package will automatically register itself.
3333

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"require": {
2727
"php": "8.1 - 8.2",
2828
"jrmajor/fluent": "^0.4.0",
29-
"laravel/framework": "^9.0"
29+
"laravel/framework": "^9.0 || ^10.0"
3030
},
3131
"require-dev": {
3232
"jrmajor/cs": "^0.5.0",
33-
"orchestra/testbench": "^7.0",
33+
"orchestra/testbench": "^7.0 || ^8.0",
3434
"phpstan/phpstan": "^1.10",
3535
"phpunit/phpunit": "^9.5"
3636
},

0 commit comments

Comments
 (0)