Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ignited/flysystem-google-drive
WORK IN PROGRESS
https://github.com/ignited/flysystem-google-drive
Last synced: 5 days ago
JSON representation
WORK IN PROGRESS
- Host: GitHub
- URL: https://github.com/ignited/flysystem-google-drive
- Owner: ignited
- Created: 2015-06-16T08:25:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-11T22:19:23.000Z (over 9 years ago)
- Last Synced: 2024-08-05T09:18:11.459Z (3 months ago)
- Language: PHP
- Size: 141 KB
- Stars: 14
- Watchers: 13
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flysystem-google-drive
### Google Drive Adaptor for Flysystem
WORK IN PROGRESS not for production#### My Testing Scripts
$client = new \Google_Client();
$client->setClientId('xxxx');
$client->setClientSecret('xxxx');
$client->setAccessToken('{
"access_token":"xxxx",
"expires_in":3920,
"token_type":"Bearer",
"created":'.time().'
}');
$service = new \Google_Service_Drive($client);
$adapter = new \Ignited\Flysystem\GoogleDrive\GoogleDriveAdapter($service);
$filesystem = new Filesystem($adapter);