Skip to content

Commit

Permalink
feat: support lavavel 8
Browse files Browse the repository at this point in the history
- Adds support for Lavavel 8. Removes support for PHP 7.2
  • Loading branch information
WebDevEtc authored and WebDevEtc committed Sep 13, 2020
1 parent 6fac9e9 commit 5defd9d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
php-versions: ['7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4']
dependency-version: [prefer-lowest, prefer-stable]
laravel: ['7.6.0']
laravel: ['7.6.0', '7.28.0', '8.0.1']
runs-on: ${{ matrix.operating-system }}
name: PHP ${{ matrix.php-versions }} Laravel L${{ matrix.laravel }} Test on ${{ matrix.operating-system }}

Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: php

php:
- 7.2
- 7.3
- 7.4

env:
- LARAVEL_VERSION=8.0.1
- LARAVEL_VERSION=7.28.0
- LARAVEL_VERSION=7.6.0
- LARAVEL_VERSION=7.0.0
- LARAVEL_VERSION=6.18.8
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Please contact me on the contact from on [WebDev Etc](https://webdevetc.com/) or

## Versions

- **8.4** (Sept 2020): Added support for Laravel 8. Removed support for PHP 7.2
- **8.3** (Sept 2020): Removed support for `swisnl/laravel-fulltext` as it seems abandoned.
- Searching in blogetc is now much more simple - it is all inline in the controller and does a simple LIKE query.
- If you need full text search then I recommend you implement your own search controller (see older commits to copy code that used full text search)
Expand Down

0 comments on commit 5defd9d

Please sign in to comment.