h4hardik/attask

Provide AtTtask API Operations

dev-master 2015-05-01 17:41 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:09:55 UTC


README

Performe all Operataion of [atTaskApis] (https://developers.attask.com/api-docs/) with Laravel5

Installation

To get the latest version of Laravel AtTask, simply add the following line to the require block of your composer.json file:

"h4hardik/attask": "dev-master"

You'll then need to run composer install or composer update to download it and have the autoloader updated , and it's DONE!!!

This module is still way far from being perfect, it's not ready for production. However You can use it in your project. And anytime you think it's not good and want to improve it, a pull request is more than welcome.

Usage

Add Lines in your Controller:

use \Vendor\AtTask\StreamClient as AtTaskClass; // Using Namespace

In your function

$atTaskObj = new AtTaskClass('https://lexisnexis.attasksandbox.com');
$session = $atTaskObj->login('rohit.chopra@lexisnexis.com', 'l3xisn3xis');

You can find other Opertaions : [Here] (https://developers.attask.com/api-docs/)

License

Laravel Exceptions is licensed under The MIT License (MIT).

Credits

This is based on and essentially a highly simplified PHP Class file example of AtTask [API] (https://developers.attask.com/api-docs/code-samples/)