barryvdh / laravel-elfinder

elFinder bundle for Laravel
738 stars 171 forks source link

Config publish not working #77

Open kirant400 opened 9 years ago

kirant400 commented 9 years ago

php artisan vendor:publish --provider='Barryvdh\Elfinder\ElfinderServiceProvider' --tag=config Do not copy elfinder.php in config folder. But after copying manually functionality is working. I am using the version 0.3.4

dannysuryadi commented 8 years ago

For Laravel 5.1 config, try this command:

php artisan vendor:publish --provider="Barryvdh\Elfinder\ElfinderServiceProvider" --tag="config"

And to publish the views, use this one:

php artisan vendor:publish --provider="Barryvdh\Elfinder\ElfinderServiceProvider" --tag="views"

ghost commented 8 years ago

Not working for me too.. Laravel 5.0 with version 0.3.7

cutemonster commented 8 years ago

I'm using 5.2 and it says Nothing to publish for tag [config].

can anybody help?

jelmersmid commented 8 years ago

php artisan config:clear

cutemonster commented 8 years ago

thanks!

FilipQL commented 8 years ago

Hmm, I did php artisan config:clear and I am still getting the same: Nothing to publish for tag [config].

jclee100 commented 7 years ago

Laravel 5.4 here. Not working either.

rsmondejar commented 7 years ago

Thanks @dannysuryadi ! That works for me! Laravel version 5.2

robertnicjoo commented 7 years ago

No such a file in config folder! Laravel 5.4

hilmanfaiz commented 6 years ago

@dannysuryadi thanks! That works for me on Laravel 5.5