Bloby / laravel-didww by Bloby

A simple Laravel interface for interacting with the Didww API.
21
2
1
Package Data
Maintainer Username: Bloby
Package Create Date: 2017-08-04
Package Last Update: 2017-08-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-27 03:03:49
Package Statistics
Total Downloads: 21
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

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();