Motivated by Jeffrey Way's tweet from today ( https://twitter.com/jeffrey_way/status/515508990751817729 ) I dare to post the following question ;) Bare in mind that I'm a beginner and not yet really familiar withs concepts and terms - but eager to learn!
I added the/a Hashids package to my project https://github.com/alexsoft/L4-Hashids and using it with its facade capability, so for example Hashids::encode($foo). I learned two things:
$this->app->bind('hashids', function($app) {
return new Hashids(
$app['config']['app.key'],
$app['config']['laravel-hashids::length'],
$app['config']['laravel-hashids::alphabet']
);
});
My question: when I want to set default values, let's say for the length of the hashid, can I do this AND using Hashids facade? If so, where? There is a config.php in the vendors folder nearby the src folder but I understand that I'm not supposed to change anything in there. Also, adding for example 'laravel-hashids::length' => 8 to /app/config/app.php (my first reflex since the array is named $app['config']) didn't work.
Thanks in advance!
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