kuma-guy / google-module
Installs: 73
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/kuma-guy/google-module
Requires
- php: >=5.5
- google/apiclient: ^2.0
- ray/di: ^2.3
This package is auto-updated.
Last update: 2025-09-26 20:54:48 UTC
README
google-api-php-client module for Ray.Di
Installation
Composer install
$ composer require kuma-guy/google-module
Module install
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)); } }
DI trait
- GoogleClientInject for
Google_Client