Check out the documentation about "Cascading Configuration Files" in Package Configuration:
http://laravel.com/docs/4.2/packages#package-configuration
You'll want to run the following command:
php artisan config:publish vendor/package
So for this instance:
php artisan config:publish alexsoft/hashids
This will "publish" the config files to app/config/packages/vendor/package
, or in this case, app/config/packages/alexsoft/hashids
. You can then edit them there.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community