blob/laravel-didww
laravel-didww
NOTE: This package is no longer in active development. Feel free to fork and extend it as needed.
A simple Laravel interface for interacting with the Didww API.
Installation
To install the package, simply add the following to your Laravel installation's composer.json file:
"require": {
"laravel/framework": "5.*",
"blob/laravel-didww": "dev-master"
},
Run composer update to pull in the files.
Then, add the following Service Provider to your providers array in your config/app.php file:
'providers' => array(
...
Didww\Providers\DidwwServiceProvider::class
);
From the command-line run:
php artisan vendor:publish
Configuration
Open config/didww.php and configure the api endpoint and credentials:
return [
// WSDL URL
'url' => 'https://url.com/APIService.asmx?wsdl',
// WSDL USERNAME
'username' => 'username',
// WSDL KEY
'key' => 'user_key',
//WSDL in Test Mode
'test' => true,
];
Usage
$details = Didww::getDidwwApiDetails();
Related Packages
php-tmdb/laravel
Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...
53,312
160
cyvelnet/laravel5-fractal
A simple fractal service provider and transformer generator with model attribute...
189,959
79
pixelpeter/laravel5-woocommerce-api-client
Laravel 5 wrapper for the Woocommerce REST API
106,547
123