Laravel
Installation
Require this package, with Composer , in the root directory of your project.
1composer require arkecosystem/laravel
Configuration
ARK Laravel requires connection configuration. To get started, you’ll need to publish all vendor assets:
1php artisan vendor:publish --provider="ArkEcosystem\Ark\ArkServiceProvider"
This will create a config/ark.php
file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.
Default Connection Name
This option default
is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is main
.
ARK Connections
This option connections
is where each of the connections is set up for your application. Example configuration has been included, but you may add as many connections as you would like.
Usage
ArkManager
This is the class of most interest. It is bound to the ioc container as ark
and can be accessed using the Facades\Ark
facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of Graham Campbell’s Laravel Manager package, so you may want to go and check out the docs for how to use the manager class over at that repository. Note that the connection class returned will always be an instance of Ark\Ark
.
Facades\Ark
This facade will dynamically pass static method calls to the ark
object in the ioc container which by default is the ArkManager
class.
ArkServiceProvider
This class contains no public methods of interest, it should be added to the providers array in config/app.php
as it sets up ioc bindings.
Examples
Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main
. After you enter your authentication details in the config file, it will just work:
1// You can alias this in config/app.php.2use ArkEcosystem\Ark\Facades\Ark;3 4Ark::api('Wallets')->wallets();5// We're done here - how easy was that, it just works!
The ARK manager will behave like it is an ArkEcosystem\Ark\Client
. If you want to call specific connections, you can do that with the connection method:
1use ArkEcosystem\Ark\Facades\Ark; 2 3// Writing this… 4Ark::connection('main')->api('Wallets')->all(); 5 6// …is identical to writing this 7Ark::api('Wallets')->all(); 8 9// and is also identical to writing this.10Ark::connection()->api('Wallets')->all();11 12// This is because the main connection is configured to be the default.13Ark::getDefaultConnection(); // This will return main.14 15// We can change the default connection.16Ark::setDefaultConnection('alternative'); // The default is now alternative.
If you prefer to use dependency injection over facades like me, then you can inject the manager:
1use ArkEcosystem\Ark\ArkManager; 2 3class Foo 4{ 5 protected $ark; 6 7 public function __construct(ArkManager $ark) 8 { 9 $this->ark = $ark;10 }11 12 public function bar($params)13 {14 $this->ark->api('Wallets')->all();15 }16}17 18App::make('Foo')->bar($params);
API Documentation
There are other classes in this package that are not documented here. This is because the package is a Laravel wrapper of the ARK PHP-Client package.