Skip to content

Commit

Permalink
Support Laravel 8 (#9)
Browse files Browse the repository at this point in the history
* Backport to Laravel 8

* Update min requirements

* Run tests on Laravel 8
  • Loading branch information
jbrooksuk authored Nov 26, 2024
1 parent 169248e commit c8c1a97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
fail-fast: true
matrix:
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 9, 10, 11 ]
laravel: [ 8, 9, 10, 11 ]
stability: [ 'prefer-lowest', 'prefer-stable' ]
include:
- laravel: 8.*
testbench: ^8.20
- laravel: 9.*
testbench: ^8.20
- laravel: 10.*
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A Laravel-based library to easily build [Plain UI component](https://docs.plain.
## Requirements

- PHP 8.1 or higher
- Laravel 9.33 or higher
- Laravel 8.83 or higher

## Installation

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
},
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0",
"illuminate/http": "^9.33|^10.0|^11.0",
"illuminate/support": "^9.33|^10.0|^11.0"
"illuminate/http": "^8.83|^9.33|^10.0|^11.0",
"illuminate/support": "^8.83|^9.33|^10.0|^11.0"
},
"require-dev": {
"nunomaduro/larastan": "^2.0",
Expand Down

0 comments on commit c8c1a97

Please sign in to comment.