builder-extension
builder-extension copied to clipboard
[Feature]: When you add an external resource to your modules composer.json have it auto register in the service provider.
[Feature]: When you add an external resource to your modules composer.json have it auto register in the service provider.
Added to
"require": {
"maddhatter/laravel-fullcalendar": "~1.0"
}
have it auto register in the service provider
Looking at laravel-fullcalendar project repo, this is a tricky one,
From the project docs,
Then register the service provider in your app.php config file:
'MaddHatter\LaravelFullcalendar\ServiceProvider',
And optionally create an alias:
'Calendar' => 'MaddHatter\LaravelFullcalendar\Facades\Calendar',
I'll need a way for the builder to reliably read such details for composer added packages, .. ideas?
I'll leave this open for a while in case I come across a solution or someone suggest an approach,