Skip to content

pabloroman/laravel-autotweet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Autotweet: A LaravelPHP Twitter bot to send automated tweets from your app.

Usage

  1. Copy the file config/autotweet-sample.php to your application config file, renaming it to autotweet.php

  2. Start the bundle:

  • Automatically: Add 'autotweet' => array('auto' => true), to your bundle.php

  • Manually:

    Add 'autotweet' to your bundle.php and start the bundle dynamically.

	if( !class_exists( 'Autotweet' ) ) {
		Bundle::start( 'autotweet' );
	}
  1. Send a tweet from your Laravel app:
	Autotweet::tweet("How are you doing today?");

About

A LaravelPHP Twitter bot to send automated tweets from your app

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages