Skip to content

Commit 4ad5b34

Browse files
committed
Drop support for Laravel <5.5 and PHP <7.1
1 parent 096bdec commit 4ad5b34

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: php
22

33
php:
4-
- 5.6
5-
- 7.0
64
- 7.1
75
- 7.2
6+
- 7.3
87

98
env:
109
matrix:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## 2.0.0 - 2019-09-02
6+
7+
- Drop support for Laravel <5.5 and PHP <7.1
8+
9+
## 1.2.0 - 2019-08-06
10+
11+
- Add support for Laravel 6.0
12+
513
## 1.1.0 - 2018-09-01
614

715
- Add support for Laravel 5.7

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"homepage": "https://github.com/sebdesign/laravel-sri",
99
"type": "library",
1010
"require": {
11-
"php": "^7.0",
12-
"laravel/framework": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
11+
"php": "^7.1",
12+
"laravel/framework": "^5.5|^6.0"
1313
},
1414
"require-dev": {
15-
"phpunit/phpunit": "~6.0|~7.0",
15+
"phpunit/phpunit": "^7.0|^8.0",
1616
"mockery/mockery": "^1.0",
17-
"orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|~3.9"
17+
"orchestra/testbench": "^3.5"
1818
},
1919
"autoload": {
2020
"files": [

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
abstract class TestCase extends Orchestra
1010
{
11-
public function setUp()
11+
public function setUp(): void
1212
{
1313
parent::setUp();
1414

0 commit comments

Comments
 (0)