Skip to content

Commit

Permalink
Merge pull request #9 from klaude/laravel-8-support
Browse files Browse the repository at this point in the history
Initial Laravel 8 support
  • Loading branch information
klaude authored Oct 25, 2020
2 parents 9f3d159 + fad470a commit 679e4f9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ cache:
# * Laravel 5.6+ requires PHP 7.1+.
# * Laravel 6.0+ requires PHP 7.2+.
# * Laravel 7.0+ requires PHP 7.2+.
# * Laravel 8.0+ requires PHP 7.3+.
# * TravisCI tests in Ubuntu 16.04 Xenial Xerus, which doesn't support PHP 5.5.
# Test 5.5 in Trusty Tahr instead.
matrix:
Expand Down Expand Up @@ -112,6 +113,8 @@ matrix:
env: LARAVEL_VERSION="6.0.*"
- php: "7.3"
env: LARAVEL_VERSION="7.0.*"
- php: "7.3"
env: LARAVEL_VERSION="8.0.*"

- php: "7.4"
env: LARAVEL_VERSION="5.0.*"
Expand All @@ -135,6 +138,8 @@ matrix:
env: LARAVEL_VERSION="6.0.*"
- php: "7.4"
env: LARAVEL_VERSION="7.0.*"
- php: "7.4"
env: LARAVEL_VERSION="8.0.*"

# Code coverage testing isn't necessary, so remove xdebug to speed things up.
before_install:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Latest Unstable Version](https://poser.pugx.org/klaude/eloquent-preferences/v/unstable)](https://packagist.org/packages/klaude/eloquent-preferences)
[![License](https://poser.pugx.org/klaude/eloquent-preferences/license)](https://packagist.org/packages/klaude/eloquent-preferences)

Use this library to bind multiple key/value pair preferences to your application's Eloquent models. Preferences are stored in your application's database so they can be easily stored and queried for. This library supports Eloquent 5, 6, and 7 installed either standalone or as a part of the full Laravel framework. Issues and pull requests are welcome! See [CONTRIBUTING.md](https://github.com/klaude/eloquent-preferences/blob/master/CONTRIBUTING.md) for more information.
Use this library to bind multiple key/value pair preferences to your application's Eloquent models. Preferences are stored in your application's database so they can be easily stored and queried for. This library supports Eloquent 5 through 8 installed either standalone or as a part of the full Laravel framework. Issues and pull requests are welcome! See [CONTRIBUTING.md](https://github.com/klaude/eloquent-preferences/blob/master/CONTRIBUTING.md) for more information.

* [Installation](#installation)
* [Configuring In Laravel](#configuring-in-laravel)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
],
"require": {
"ext-json": "*",
"illuminate/database": "~5|~6.0|~7.0",
"illuminate/support": "~5|~6.0|~7.0"
"illuminate/database": "~5|~6.0|~7.0|~8.0",
"illuminate/support": "~5|~6.0|~7.0|~8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -23,7 +23,7 @@
},
"require-dev": {
"ext-pdo": "*",
"illuminate/events": "~5|~6.0|~7.0",
"illuminate/events": "~5|~6.0|~7.0|~8.0",
"phpunit/phpunit": "~5.0|~4.8"
},
"autoload-dev": {
Expand Down

0 comments on commit 679e4f9

Please sign in to comment.