-
Notifications
You must be signed in to change notification settings - Fork 76
Add support for Lumen #34
Comments
Haven't tested it yet. If I remember correctly, the registration of the service providers is handled differently in Lumen. Could be a good idea to add Lumen support. |
Unforunately it does not work with Lumen at the moment. You can register the Should be easy though to fork the project and create an adaptation for Lumen. |
probably adding this would make it compatible with lumen |
I tend to take the same approach as Laravel Scout. Lumen does not provide a default location for configuration files, like Laravel does. But with this change you would be able to provide the path to your configuration in the // ./app/Providers/AppServiceProvider.php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register()
{
$this->app['path.config'] = base_path('config'); // Path to your configuration directory
}
} I will prepare an update and some additional notes for the README. |
Added Lumen support in the latest release (1.5.0) |
No description provided.
The text was updated successfully, but these errors were encountered: