integrated / social-bundle
Provides connectors for social media
Installs: 47
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.6
- abraham/twitteroauth: ^0.7.3
- facebook/graph-sdk: ~5.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^2.8
This package is not auto-updated.
Last update: 2024-10-27 02:18:19 UTC
README
Provides connectors for social media.
Requirements
- See the require section in the composer.json
Documentation
Installation
This bundle can be installed following these steps:
Install using composer
$ php composer.phar require integrated/social-bundle:~0.6
Enable the bundle
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Integrated\Bundle\SocialBundle\IntegratedSocialBundle()
// ...
);
}
Configure the bundle
To enable the twitter connector set the consumer in the config
# app/config/config.yml
integrated_social:
twitter:
consumer_key: '%twitter_consumer_key%'
consumer_secret: '%twitter_consumer_secret%'
To enable the facebook connector set the consumer in the config
# app/config/config.yml
integrated_social:
facebook:
app_id: '%facebook_app_id%'
app_secret: '%facebook_app_secret%'
License
This bundle is under the MIT license. See the complete license in the bundle:
LICENSE
Contributing
Pull requests are welcome. Please see our CONTRIBUTING guide.
About
This bundle is part of the Integrated project. You can read more about this project on the Integrated for developers website.