FuelPHP Bin
<?php /** * Fuel is a fast, lightweight, community driven PHP5 framework. * * @package Fuel * @version 1.6 * @author Fuel Development Team * @license MIT License * @copyright 2010 - 2013 Fuel Development Team * @link http://fuelphp.com */ /** * NOTICE: * * If you need to make modifications to the default configuration, copy * this file to your app/config folder, and make them in there. * * This will allow you to upgrade fuel without losing your custom config. */ return array( /** * link_multiple_providers * * Can multiple providers be attached to one user account */ 'link_multiple_providers' => true, /** * default_group * * Group id to be assigned to newly created users */ 'default_group' => 1, /** * debug * * Uncomment if you would like to view debug messages */ 'debug' => false, 'table' => 'users', /** * A random string used for signing of auth response. * * You HAVE to set this value in your application config file! */ 'security_salt' => "{secret}", /** * Higher value, better security, slower hashing; * Lower value, lower security, faster hashing. */ 'security_iteration' => 300, /** * Time limit for valid $auth response, starting from $auth response generation to validation. */ 'security_timeout' => '2 minutes', /** * Strategy * Refer to individual strategy's documentation on configuration requirements. */ 'Strategy' => array( 'instagram' => array( 'client_id' => '{secret}', 'client_secret' => '{secret}', 'redirect_uri' => '{secret}', ), ), );