dev-master
9999999-devLaravel package for ksmz/nana
BSD-2-Clause
The Requires
by ksmz
v0.1
0.1.0.0Laravel package for ksmz/nana
BSD-2-Clause
The Requires
by ksmz
v0.0.1
0.0.1.0Laravel package for ksmz/nana
BSD-2-Clause
The Requires
by ksmz
Wallogit.com
2017 © Pedro Peláez
Laravel package for ksmz/nana
Laravel package for ksmz/nana. Documentation is still incomplete., (*1)
composer require ksmz/nana-laravelartisan vendor:publish --provider "ksmz\NanaLaravel\NanaServiceProvider"This package provides a more appropriate integration with regards to manging the Sink., (*2)
Make sure you're bringing in the right facades/classes. The underlying package also provides a facade-like static proxy and basic sink support., (*3)
| ksmz\Nana | ksmz\Nana-Laravel |
|---|---|
| Fetch | LaravelFetch |
| Consume | LaravelConsume |
| Sink | NanaManager (Typehintable, Registered in container) |
| Nana | Facades/Nana (Actual facade, aliased to \Nana as well) |
Of course, if you have stuff registered in the sink through the config file (config/nana.php), you can't use Sink since it doesn't belong to this package., (*4)
That being said, nothing is stopping you from using the base package. If you're making super simple requests, use ksmz\Nana\Nana.php., (*5)
config/.You should see a nana.php in your configuration directory. These are where you should configure your sinks. They are functionally identical to the Sink found in the base package., (*6)
As said in the base package's Sink documentation, the Sink API + configuration is inspired by Laravel's filesystems., (*7)
return [
'default' => env('NANA_FAUCET', 'default'),
'faucets' => [
/*
|--------------------------------------------------------------------------
| Guzzle Options
|--------------------------------------------------------------------------
|
| Here you may configure as many faucets as you wish. <guzzle_config> is
| passed directly to Guzzle's Request Options.
|
| See http://docs.guzzlephp.org/en/stable/request-options.html for more info.
*/
'default' => [
'default_disk' => env('FILESYSTEM_DRIVER', 'local'),
'guzzle_config' => [
'http_errors' => false,
'headers' => [
'User-Agent' => 'nana/1.0',
'Accept' => 'application/json',
],
],
...
];
Laravel package for ksmz/nana
BSD-2-Clause
Laravel package for ksmz/nana
BSD-2-Clause
Laravel package for ksmz/nana
BSD-2-Clause