We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4f3b7 commit c035352Copy full SHA for c035352
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
All notable changes to `laravel-licenser` will be documented in this file.
4
5
+### 3.5.3
6
+- Fixed config file path in provider (again)
7
+
8
### 3.5.2
9
- Fixed wrong config file in provider
10
src/Providers/LicenseServiceProvider.php
@@ -14,7 +14,7 @@ class LicenseServiceProvider extends ServiceProvider
14
*/
15
public function register()
16
{
17
- $this->mergeConfigFrom(__DIR__.'/../config/licenses.php', 'licenses');
+ $this->mergeConfigFrom(__DIR__.'/../../config/licenses.php', 'licenses');
18
}
19
20
/**
0 commit comments