Skip to content
This repository has been archived by the owner on Oct 18, 2020. It is now read-only.

Add Laravel 5.8 support #203

Merged
merged 5 commits into from
Feb 27, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ php:

env:
matrix:
- Laravel=5.8
- Laravel=5.7
- Laravel=5.6

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ A simple [Laravel](https://laravel.com/)-style way to create breadcrumbs.

| Laravel Breadcrumbs | Laravel | PHP |
|------------------------------------------------------------------------|-----------|------|
| **5.1.1+** | 5.6 – 5.7 | 7.1+ |
| **5.1.1+** | 5.6 – 5.8 | 7.1+ |
dabich marked this conversation as resolved.
Show resolved Hide resolved
| 5.0.0 – 5.1.0 | 5.6 | 7.1+ |
| [4.x](https://github.com/davejamesmiller/laravel-breadcrumbs/tree/4.x) | 5.5 | 7.0+ |
| [3.x](https://github.com/davejamesmiller/laravel-breadcrumbs/tree/3.x) | 5.0 – 5.4 | 5.4+ |
Expand Down Expand Up @@ -1171,6 +1171,11 @@ So if you get stuck, *please* don't expect me to help! Here are some alternate s
*Laravel Breadcrumbs uses [Semantic Versioning](http://semver.org/).*


### [v5.2.1](https://github.com/davejamesmiller/laravel-breadcrumbs/tree/5.2.1) (Tue 26 Feb 2019)

- Add Laravel 5.8 support


### [v5.2.0](https://github.com/davejamesmiller/laravel-breadcrumbs/tree/5.2.0) (Tue 30 Oct 2018)

- Add [UIkit](https://getuikit.com/docs/breadcrumb) template (`breadcrumbs::uikit`)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"license": "MIT",
"require": {
"php": ">=7.1.3",
"illuminate/support": "5.6.*|5.7.*",
"illuminate/view": "5.6.*|5.7.*"
"illuminate/support": "5.6.*|5.7.*|5.8.*",
"illuminate/view": "5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"laravel/framework": "5.6.*|5.7.*",
"orchestra/testbench": "3.6.*|3.7.*",
"laravel/framework": "5.6.*|5.7.*|5.8.*",
"orchestra/testbench": "3.6.*|3.7.*|3.8.*",
"phpunit/phpunit": "7.*",
"php-coveralls/php-coveralls": "^1.0"
},
Expand Down