Skip to content

Commit 83516d2

Browse files
committed
edit changelog
1 parent 220c24c commit 83516d2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

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

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

5+
## 1.3.0 - 2018-06-05
6+
- add compatibility with Lumen
7+
58
## 1.2.0 - 2018-05-16
69
- add `binary_path` to config file
710

src/ImageOptimizerServiceProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ public function register()
2121
$this->publishes([
2222
__DIR__.'/../config/image-optimizer.php' => config_path('image-optimizer.php'),
2323
], 'config');
24-
} elseif ($this->app instanceof LumenApplication) {
24+
}
25+
26+
if ($this->app instanceof LumenApplication) {
2527
$this->app->configure('image-optimizer');
2628
}
2729

0 commit comments

Comments
 (0)