Skip to content

Commit 31dac2a

Browse files
committed
drop support for laravel 9
1 parent a8fe82d commit 31dac2a

6 files changed

Lines changed: 12 additions & 18 deletions

File tree

.gitattributes

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/.github export-ignore
2-
/tests export-ignore
3-
/.editorconfig export-ignore
4-
/.php-cs-fixer.php export-ignore
5-
/composer.lock export-ignore
6-
/phpstan.neon export-ignore
7-
/phpunit.xml.dist export-ignore
1+
/.github export-ignore
2+
/tests export-ignore
3+
/.editorconfig export-ignore
4+
/.php-cs-fixer.php export-ignore
5+
/composer.lock export-ignore
6+
/phpstan.neon export-ignore
7+
/phpunit.xml.dist export-ignore

.github/workflows/sca.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
include:
16-
- php: '8.1'
17-
laravel: '9.*'
18-
stability: prefer-lowest
19-
- php: '8.2'
20-
laravel: '9.*'
21-
stability: prefer-stable
2216
- php: '8.1'
2317
laravel: '10.*'
2418
stability: prefer-lowest

.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.*', '10.*']
16+
laravel: ['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 Laravel 9 and 10.
30+
This package is a Laravel wrapper around [jrmajor/fluent-php](https://github.com/jrmajor/fluent-php). The current version supports Laravel 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": "^1.0",
29-
"laravel/framework": "^9.0 || ^10.0"
29+
"laravel/framework": "^10.0"
3030
},
3131
"require-dev": {
3232
"jrmajor/cs": "^0.5.1",
33-
"orchestra/testbench": "^7.0 || ^8.0",
33+
"orchestra/testbench": "^8.0",
3434
"phpstan/phpstan": "^1.10",
3535
"phpunit/phpunit": "^9.6"
3636
},

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)