Skip to content

Commit

Permalink
Laravel 7 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
schulzefelix committed Apr 12, 2020
1 parent c8e9c59 commit 0d5b7ca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ build
composer.lock
docs
vendor
.phpunit.result.cache
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: php
php:
- 7.2
- 7.3
- 7.4

env:
matrix:
Expand All @@ -16,4 +17,4 @@ script:
- phpunit --coverage-text --coverage-clover=coverage.clover

after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

All Notable changes to `laravel-search-console` will be documented in this file.
## [1.4.0] - 2020-04-12
- Add Compatibility With Laravel 7
- Drop support for Laravel 6
- Minimum PHP 7.2.5

## [1.3.0] - 2019-09-15
- Add Compatibility With Laravel 6
Expand Down Expand Up @@ -36,4 +40,4 @@ All Notable changes to `laravel-search-console` will be documented in this file.
- dropped support for anything lower than Laravel 5.4

## [0.0.1] - 2017-07-27
- Initial Beta Release
- Initial Beta Release
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.2.5",
"google/apiclient": "^2.0",
"illuminate/support": "^6.0",
"illuminate/support": "^7.0",
"symfony/cache": "^4.3|^5.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^4.0",
"phpunit/phpunit" : "^8.0"
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit" : "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 0d5b7ca

Please sign in to comment.