mauro-moreno / silex-instagram-provider
Silex Instagram service provider
v1.0.0
2016-01-27 12:29 UTC
Requires
- cosenary/instagram: 2.*
Requires (Dev)
- phpunit/phpunit: >=5.1
- silex/silex: >=1
This package is auto-updated.
Last update: 2024-10-29 01:35:50 UTC
README
Silex Instagram provider
Based on Christian Metz Instagram PHP API V2 instagram-php-api.
Installation
** Step 1: Download Service Provider
To install with composer just open a terminal and type:
$ composer require mauro-moreno/silex-instagram-provider
** Step 2: Enable Service Provider
To enable
<?php $app = new Silex\Application; $app['instagram.key'] = API_KEY; $app['instagram.secret'] = API_SECRET; $app['instagram.callback'] = API_CALLBACK; $app->register(new MauroMoreno\SilexInstagram\SilexInstagramServiceProvider);