Wallogit.com
2017 © Pedro Peláez
Puppy bark
In the require key of composer.json file add the following, (*1)
"bss-taiphung/bss_puppy": "1.0.*"
Run the Composer update command, (*2)
$ composer update
In your config/app.php add 'bss_taiphung\puppy\ServiceProviders\PuppyServiceProvider::class' to the end of the providers array, (*3)
'providers' => array(
...
'bss_taiphung\puppy\ServiceProviders\PuppyServiceProvider::class',
),
At the end of config/app.php add 'Puppy' => bss_taiphung\puppy\Facades\PuppyFacade::class to the aliases array, (*4)
'aliases' => array(
...
'Puppy' => bss_taiphung\puppy\Facades\PuppyFacade::class,
),
###Facade Puppy::bark() => puppy is barking! Puppy::run() => puppy is running! ###API GET /randomQuote => Smile, breathe, and go slowly. - Thich Nhat Hanh