Download the PHP package compenda/sendwithus without Composer
On this page you can find all versions of the php package compenda/sendwithus. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download compenda/sendwithus
More information about compenda/sendwithus
Files in compenda/sendwithus
Package sendwithus
Short Description SendWithUs Is A SendWithUs Bridge For Laravel 5
License MIT
Informations about the package sendwithus
Laravel SendWithUs
A package to use sendwithus_php with Laravel 5
This repository is derived from Laravel-Dropbox by Graham Campbell
Installation
Either PHP 5.5+ or HHVM 3.6+ are required.
To get the latest version of Laravel SendWithUs, simply require the project using Composer:
Instead, you may of course manually update your require block and run composer update if you so choose:
Once Laravel SendWithUs is installed, you need to register the service provider. Open up config/app.php
and add the following to the providers
key.
'Compenda\SendWithUs\SendWithUsServiceProvider'
You can register the SendWithUs facade in the aliases
key of your config/app.php
file if you like.
'SendWithUs' => 'Compenda\SendWithUs\Facades\SendWithUs'
Configuration
Laravel Sendwithus requires connection configuration.
To get started, you'll need to publish all vendor assets:
This will create a config/sendwithus.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.
There are two config options:
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'
.
SendWithUs 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
SendWithUsManager
This is the class of most interest. It is bound to the ioc container as 'sendwithus'
and can be accessed using the Facades\SendWithUs
facade. This class implements the ManagerInterface
by extending AbstractManager
. The interface and abstract class are both part of my Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repo. Note that the connection class returned will always be an instance of \sendwithus\API
.
Facades\SendWithUs
This facade will dynamically pass static method calls to the 'sendwithus'
object in the ioc container which by default is the SendWithUsManager
class.
SendWithUsServiceProvider
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.
Real 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:
The sendwithus manager will behave like it is a \sendwithus\API
class. If you want to call specific connections, you can do with the connection
method:
With that in mind, note that:
If you prefer to use dependency injection over facades, then you can easily inject the manager like so:
For more information on how to use the \sendwithus\API
class we are calling behind the scenes here, check out the repository at https://github.com/sendwithus/sendwithus_php, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage.
Further Information
There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package.
License
Laravel-SendWithUs is licensed under The MIT License (MIT).
All versions of sendwithus with dependencies
illuminate/contracts Version 5.1.*|5.2.*
illuminate/support Version 5.1.*|5.2.*
graham-campbell/manager Version ^2.3
sendwithus/api Version ^2.12.1