Skip to content

Commit

Permalink
Merge pull request #16 from PrinsFrank/feature/laravel-5.8
Browse files Browse the repository at this point in the history
Add Laravel 5.8 support
  • Loading branch information
JaZo authored Mar 20, 2019
2 parents 34fb038 + e748ba6 commit 7925cab
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ language: php

matrix:
include:
- php: "7.0"
env: LARAVEL_VERSION="5.5.*"
- php: "7.1"
env: LARAVEL_VERSION="5.5.*"
- php: "7.2"
env: LARAVEL_VERSION="5.5.*"
- php: "7.2"
env: LARAVEL_VERSION="5.6.*"
- php: "7.2"
env: LARAVEL_VERSION="5.7.*" RUN_CS_FIXER=1
env: LARAVEL_VERSION="5.7.*"
- php: "7.2"
env: LARAVEL_VERSION="5.8.*" RUN_CS_FIXER=1

sudo: false

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to `laravel-fulltext` will be documented in this file.

Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## Unreleased

### Added
* Added support for Laravel 5.8.

### Changed
* Dropped Laravel <5.5 support.
* Dropped PHP <7.1 support.

## [0.15.0] - 2019-01-28

### Fixed
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
}
],
"require": {
"php": ">=7.0",
"illuminate/console": "^5.1,<5.8",
"illuminate/contracts": "^5.1,<5.8",
"illuminate/database": "^5.1,<5.8",
"illuminate/support": "^5.1,<5.8"
"php": ">=7.1.3",
"illuminate/console": "5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/contracts": "5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/database": "5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.1",
"phpunit/phpunit": "^6.1|^7.0|^8.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
Expand Down

0 comments on commit 7925cab

Please sign in to comment.