13/07
2016
dev-master
9999999-dev
MIT
The Requires
- google/apiclient ^2.0
- ray/di ^2.3
- php >=5.5
by Shingo Kumagai
Wallogit.com
2017 © Pedro Peláez
google-api-php-client module for Ray.Di, (*2)
$ composer require kuma-guy/google-module
use Ray\Di\AbstractModule;
use Ray\GoogleModule\GoogleModule;
class AppModule extends AbstractModule
{
protected function configure()
{
$config = [
'client_id' => 'your-client-id',
'client_secret' => 'your-client-secret'
];
$this->install(new GoogleModule($config));
}
}
Google_Client
MIT