Skip to content

benedmunds/Laravel-Boxcar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

#Boxcar.io Provider API bundle for Laravel

##Install

php artisan bundle:install boxcar  

##Usage In your routes.php simply start the bundle, set your login info, and call the API

Route::get('boxcar/create', function()
{
	$api_key    = '123';
	$api_secret = '123';

	Bundle::start('boxcar');

	$output = Boxcar\Boxcar::init($api_key, $api_secret)
	                       ->broadcast('Test Name', 'Test Broadcast, this was sent at ' . date('r'));

	print_r($output);
	exit;
});

See the Boxcar Provider API documentation for API details.

Bundle created by Ben Edmunds.

About

Boxcar.io API bundle for Laravel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages