h3r2on / acs
A package for inteacting with Appcelerator Cloud Services
1.0.0-beta
2014-08-06 12:53 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: 4.0.*
This package is not auto-updated.
Last update: 2025-02-25 04:27:24 UTC
README
A package to interface with Appcelerator Cloud Services
Installation
To install the following to your composer.json
"h3r2on/acs" : "dev-master"
Add the service provider and alias to app/config/app.php:
'H3r2on\Acs\AcsServiceProvider',
'Acs' => 'H3r2on\Acs\Facades\Acs',
To publish the configuration file you'll have to:
artisan config:publish h3r2on/acs
Basic Usage
In your contoller or route:
$result = Acs::get('user/search.json');
//do something with the returned object
Using Authenticated API's or as an Authentication provider for ACS Users
To use API's that require user authentication you will need to use a third party authentication provider. I've chosen Sentry, if you'd like to use this and use a different Auth manager create a issue.
TODO: Complete usage