Search by

codedazur / social

afewyards

There is no license information available for the latest version (V0.1.53) of this package.

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

V0.1.53 2014-08-13 14:27 UTC

This package is not auto-updated.

Last update: 2022-10-24 22:02:21 UTC


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"