codedazur / social
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 161
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/codedazur/social
Requires
- php: >=5.4.0
- illuminate/support: ~4
README
Provides basic twitter and facebook connect to use with Laravel 4.
Instalation
Add codedazur-social to your composer.json file.
require : {
"laravel/framework": "4.1.*",
"codedazur/social": "dev-master"
}
Or with composer command:
composer require "codedazur/social": "dev-master"
Add provider to your app/config/app.php providers
'Codedazur\Social\SocialServiceProvider',
Publish config
php artisan config:publish codedazur/social
Publish assets
php artisan asset:publish codedazur/social
Publish migration
php artisan migrate --package="codedazur/social"