Skip to content

Commit

Permalink
Drop support for L5.7 and below + PHP7.1 and below
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist committed Feb 27, 2019
1 parent 2646320 commit 7145e99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.1
- 7.2
- 7.3

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `laravel-database-mail-templates` will be documented in this file

# 3.1.0 - 2019-02-27

- Drop support for Laravel 5.7 and lower
- Drop support for PHP 7.1 and lower

# 3.0.1 - 2019-02-27

- Add support for Laravel 5.8
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
}
],
"require": {
"php": "^7.1",
"laravel/framework": "~5.7|~5.8",
"php": "^7.2",

This comment has been minimized.

Copy link
@lorvent

lorvent Feb 27, 2019

why bump to 7.2 when laravel requires only 7.1 and the fact is, no 7.2 only code added in this commit

This comment has been minimized.

Copy link
@AlexVanderbist

AlexVanderbist Feb 27, 2019

Author Member

Because we no longer want to support php 7.1 - the previous version (3.0.1) works with Laravel 5.8 and php 7.1. I'd suggest you use that one or upgrade to php 7.3 if it's an issue

"laravel/framework": "~5.8",
"mustache/mustache": "^2.12"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.7|~5.8",
"phpunit/phpunit": "^7.0|^8.0"
"orchestra/testbench": "~3.8",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7145e99

Please sign in to comment.