Skip to content

Commit

Permalink
Drop support for Laravel <5.5 and PHP <7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebdesign committed Sep 2, 2019
1 parent 096bdec commit 4ad5b34
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

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

All notable changes to `laravel-sri` will be documented in this file

## 2.0.0 - 2019-09-02

- Drop support for Laravel <5.5 and PHP <7.1

## 1.2.0 - 2019-08-06

- Add support for Laravel 6.0

## 1.1.0 - 2018-09-01

- Add support for Laravel 5.7
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"homepage": "https://github.com/sebdesign/laravel-sri",
"type": "library",
"require": {
"php": "^7.0",
"laravel/framework": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
"php": "^7.1",
"laravel/framework": "^5.5|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0|~7.0",
"phpunit/phpunit": "^7.0|^8.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|~3.9"
"orchestra/testbench": "^3.5"
},
"autoload": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

abstract class TestCase extends Orchestra
{
public function setUp()
public function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 4ad5b34

Please sign in to comment.