h4hardik/attask is a Laravel package for provide atttask api operations.
It currently has 0 GitHub stars and 14 downloads on Packagist.
Install it with composer require h4hardik/attask.
Discover more Laravel packages by h4hardik
or browse all Laravel packages to compare alternatives.
Last updated
Performe all Operataion of [atTaskApis] (https://developers.attask.com/api-docs/) with Laravel5
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.
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('[email protected]', 'l3xisn3xis');
You can find other Opertaions : [Here] (https://developers.attask.com/api-docs/)
Laravel Exceptions is licensed under The MIT License (MIT).
This is based on and essentially a highly simplified PHP Class file example of AtTask [API] (https://developers.attask.com/api-docs/code-samples/)