laravel-caffeine: Problems with the installation
working with laravel 5.2.45
installed via composer require genealabs/laravel-caffeine:~0.3.11
inserted in the config/app file
GeneaLabs\LaravelCaffeine\Providers\LaravelCaffeineService::class,
but laravel throws
Class ‘GeneaLabs\LaravelCaffeine\Providers\LaravelCaffeineService’ not found
error.
g patrick
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 24 (10 by maintainers)
composer updateseems to have fixed the issue. Thanks so much!@felorodri You are correct in saying that the url(‘’) line is in there which could be problematic. This is the exact code that gets initially published:
<?php return [ 'dripIntervalInMilliSeconds' => 300000, 'domain' => url('/'), 'route' => 'genealabs/laravel-caffeine/drip', ]; If I change the `url('/')` code to `'/'`, there are no issues.@felorodri thanks for jumping in and helping out with the solution. 😃