hoy / caspeco
A Caspeco API library with Laravel support
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: ^5.6.4 || ^7.0
- danielstjules/stringy: ^2.0
- guzzlehttp/guzzle: ^6.1
- symfony/http-kernel: ^2.8 || ^3.0
Requires (Dev)
- graham-campbell/manager: ^2.4
- graham-campbell/testbench: ^3.2
- illuminate/contracts: 5.1.* || 5.2.* || 5.3.*
- illuminate/support: 5.1.* || 5.2.* || 5.3.*
- mockery/mockery: ^0.9.5
- phpunit/phpunit: ^5.4
Suggests
- graham-campbell/manager: Required to integrate with Laravel (^3.1).
- illuminate/support: Required to integrate with Laravel (^5.2).
README
A Caspeco API library for PHP with Laravel support.
Installation
Require this package, with Composer, in the root directory of your project.
composer require hoy/caspeco
Using Laravel?
Add the service provider to config/app.php
in the providers
array.
Hoy\Caspeco\CaspecoServiceProvider::class
If you want you can use the facade. Add the reference in config/app.php
to your aliases array.
'Caspeco' => Hoy\Caspeco\Facades\Caspeco::class
Configuration
Caspeco requires connection configuration. To get started, you'll need to publish all vendor assets:
php artisan vendor:publish
This will create a config/caspeco.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
.
Caspeco Connections
This option connections
is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like.
Usage
CaspecoManager
This is the class of most interest. It is bound to the ioc container as caspeco
and can be accessed using the Facades\Caspeco
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 checkout 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 Hoy\Caspeco\Caspeco
.
Facades\Caspeco
This facade will dynamically pass static method calls to the caspeco
object in the ioc container which by default is the CaspecoManager
class.
CaspecoServiceProvider
This class contains no public methods of interest. This class should be added to the providers array in config/app.php
. This class will setup 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:
// You can alias this in config/app.php. use Hoy\Caspeco\Facades\Caspeco; Caspeco::charges()->find($id); // We're done here - how easy was that, it just works! Caspeco::charges()->capture($id); // This example is simple and there are far more methods available.
The Caspeco manager will behave like it is a Hoy\Caspeco\Caspeco
. If you want to call specific connections, you can do that with the connection method:
use Hoy\Caspeco\Facades\Caspeco; // Writing this… Caspeco::connection('main')->customers()->find($id); // …is identical to writing this Caspeco::customers()->find($id); // and is also identical to writing this. Caspeco::connection()->customers()->find($id); // This is because the main connection is configured to be the default. Caspeco::getDefaultConnection(); // This will return main. // We can change the default connection. Caspeco::setDefaultConnection('alternative'); // The default is now alternative.
If you prefer to use dependency injection over facades like me, then you can inject the manager:
use Hoy\Caspeco\CaspecoManager; class Foo { protected $caspeco; public function __construct(CaspecoManager $caspeco) { $this->caspeco = $caspeco; } public function bar($id) { $this->caspeco->customers()->find($id); } } App::make('Foo')->bar();
Documentation
There are other methods in this package that are not documented here. Instead, please see Caspeco's documentation. If you've any questions, don't hesitate to open an issue.
License
Caspeco is licensed under The MIT License (MIT).