Skip to content

Commit

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

* Update GitHub actions

* Update README.md
  • Loading branch information
Robert Allport authored Feb 16, 2022
1 parent 3e0c150 commit 21810f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: run-tests-laravel-8
name: run-tests-laravel-8-9

on: [push, pull_request]

Expand All @@ -10,11 +10,16 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.1, 8.0, 7.4]
laravel: [8.*]
laravel: [8.*, 9.*]
dependency-version: [prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 9.*
php: 7.4

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

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 @@ Easily render meta tags within your Laravel application, using a fluent API
## Features

- Simple API
- Laravel `>=5.8 | 6.x | 7.x | 8.x` supported
- Laravel `>=5.8 | 6.x | 7.x | 8.x | 9.x` supported
- `PHP ^8.0` is supported for Laravel >= 6x
- Render named, property, raw, Twitter card and OpenGraph type meta tags
- [Optionally, render default tags on every request](#default-tags)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
],
"require": {
"php": "^7.2 | ^8.0",
"illuminate/config": "5.8.* || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0"
"illuminate/config": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"orchestra/testbench": ">=3.3",
Expand Down

0 comments on commit 21810f8

Please sign in to comment.