marcossegovia / twitter-api-client-bundle
Integration with Symfony of the http client to easy access Twitter API services
Installs: 270
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/marcossegovia/twitter-api-client-bundle
Requires
- php: >=5.6
- marcossegovia/php-twitter-api-client: 1.*
Requires (Dev)
- symfony/symfony: ^2.0
This package is not auto-updated.
Last update: 2025-09-28 00:18:47 UTC
README
A Symfony Bundle for php-twitter-api-client
##How to install?
"require": { "marcossegovia/twitter-api-client-bundle": "1.*" }
##How to use it?
First of all include the Bundle into your AppKernel.php
class AppKernel extends Kernel { public function registerBundles() { $bundles = [ //... new MarcosSegovia\TwitterApiClientBundle\TwitterApiClientBundle()
And provide into your config.yml your Twitter API_KEY and API_SECRET like the following example:
twitter_api_client: twitter: api_key: your_raw_api_key api_secret: your_raw_api_secret