Skip to content

Commit 05b6ab1

Browse files
authored
Merge pull request #10 from JamesFreeman/patch/remove-l10-support
Drop Laravel 10 Support, Drop PHP 8.1 Support, Support PHP 8.5
2 parents 5932b75 + 9dff99e commit 05b6ab1

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,17 @@ jobs:
1717
strategy:
1818
fail-fast: true
1919
matrix:
20-
php: [ '8.1', '8.2', '8.3', '8.4']
21-
laravel: [ '10.*', '11.*', '12.*' ]
20+
php: [ '8.2', '8.3', '8.4', '8.5']
21+
laravel: [ '11.*', '12.*' ]
2222
dependency-version: [ prefer-stable ]
2323
include:
24-
- laravel: 10.*
25-
testbench: 8.*
2624
- laravel: 11.*
2725
testbench: 9.*
2826
- laravel: 12.*
2927
testbench: 10.*
3028
exclude:
31-
- laravel: 10.*
32-
php: 8.1
3329
- laravel: 11.*
34-
php: 8.1
35-
- laravel: 12.*
36-
php: 8.1
30+
php: 8.5
3731

3832
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3933

@@ -59,7 +53,7 @@ jobs:
5953
- uses: actions/checkout@v4
6054
- uses: shivammathur/setup-php@v2
6155
with:
62-
php-version: "8.1"
56+
php-version: "8.4"
6357
- name: Copy .env.testing
6458
run: php -r "file_exists('.env.testing') || copy('.env.testing.example', '.env.testing');"
6559
- name: Set Nova credentials

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ composer require --dev quotevelocity/novaunit
1919

2020
### General Requirements
2121

22-
* PHP 8.0 or higher
23-
* [Laravel](https://laravel.com/) 9.x - 12.x
24-
* [Laravel Nova](https://nova.laravel.com/) 4.x or higher
22+
* PHP 8.2 or higher
23+
* [Laravel](https://laravel.com/) 11.x - 12.x
24+
* [Laravel Nova](https://nova.laravel.com/) 5.x
2525
* [PHPUnit](https://github.com/sebastianbergmann/phpunit) 9.x - 11.x
2626

2727

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
}
2525
],
2626
"require": {
27-
"php": "^8.1|^8.2|^8.3|^8.4",
27+
"php": "^8.2|^8.3|^8.4|^8.5",
2828
"ext-mbstring": "*",
2929
"cakephp/chronos": ">=2.0.0",
30-
"illuminate/support": "^10.34|^11.0|^12.0",
31-
"illuminate/testing": "^10.34|^11.0|^12.0",
30+
"illuminate/support": "^11.0|^12.0",
31+
"illuminate/testing": "^11.0|^12.0",
3232
"laravel/nova": "^5.0",
3333
"phpunit/phpunit": "^10.0|^11.0|^12.0"
3434
},
3535
"require-dev": {
3636
"friendsofphp/php-cs-fixer": "^3.0",
37-
"orchestra/testbench": "^8.0|^9.0|^10.0"
37+
"orchestra/testbench": "^9.0|^10.0"
3838
},
3939
"repositories": [
4040
{

0 commit comments

Comments
 (0)