Skip to content

Commit 49a7223

Browse files
committed
wip
1 parent 1763094 commit 49a7223

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ sudo: required
44
language: php
55

66
php:
7-
- 7.0
87
- 7.1
98
- 7.2
109

CHANGELOG.md

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

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

5+
## 1.3.3 - 2019-02-27
6+
7+
- drop support for PHP 7.1
8+
- add support for Laravel 5.8
9+
510
## 1.3.2 - 2018-08-27
611
- add support for Laravel 5.7
712

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.0",
20-
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0",
19+
"php": "^7.1",
20+
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
2121
"spatie/image-optimizer": "^1.1.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
25-
"phpunit/phpunit": "^6.3|^7.0"
24+
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
25+
"phpunit/phpunit": "^6.3|^7.0|^8.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

tests/ImageOptimizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function it_can_log_to_the_default_log()
4040
$this->getTempPath('logo.png')
4141
);
4242

43-
$this->assertContains('Start optimizing', $logWriter->getAllLinesAsString());
43+
$this->assertStringContainsString('Start optimizing', $logWriter->getAllLinesAsString());
4444
}
4545

4646
/** @test */

tests/TestCase.php

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

88
abstract class TestCase extends OrchestraTestCase
99
{
10-
public function setUp()
10+
public function setUp(): void
1111
{
1212
parent::setUp();
1313

0 commit comments

Comments
 (0)