diff --git a/.travis.yml b/.travis.yml index 9a3a78d..7e2f8ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 7.2 - 7.3 - 7.4 + - 8.0 env: matrix: @@ -16,6 +17,7 @@ matrix: exclude: # Unsupported combinations - { env: Laravel=8.x, php: 7.2 } + - { env: Laravel=5.8.x, php: 8.0 } install: - travis_retry composer require --dev "laravel/framework:${Laravel}" --no-interaction diff --git a/README.md b/README.md index 0ec6bd7..7a661b8 100644 --- a/README.md +++ b/README.md @@ -13,15 +13,16 @@ 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 -* Render named, property type, raw, Twitter card and OpenGraph tags -* [Optionally, render default tags on every request](#default-tags) -* [Conditionally set tags](#conditionally-setting-tags) -* [Macroable](#macroable-support) -* There is no need to set meta titles for every controller method. The package can [optionally guess titles based on uri](#meta-title) segments or the current named route -* Well documented -* Tested, with 100% code coverage +- Simple API +- Laravel `>=5.8 | 6.x | 7.x | 8.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) +- [Conditionally set tags](#conditionally-setting-tags) +- [Macroable](#macroable-support) +- There is no need to set meta titles for every controller method. The package can [optionally guess titles based on uri](#meta-title) segments or the current named route +- Well documented +- Tested, with 100% code coverage ## Requirements diff --git a/composer.json b/composer.json index ebbc151..af082bf 100644 --- a/composer.json +++ b/composer.json @@ -22,13 +22,13 @@ } ], "require": { - "php": "^7.2", + "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" }, "require-dev": { "orchestra/testbench": ">=3.8", - "phpunit/phpunit": "^7.0|^8.0" + "phpunit/phpunit": "^7.0|^8.0|^9.3" }, "autoload": { "psr-4": {