Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PHLAK/CloudDrop
Store and retrieve files in cloud storage providers (i.e. Dropbox, Google Drive, Microsoft OneDrive, Amazon Cloud Drive, etc.)
https://github.com/PHLAK/CloudDrop
amazon-cloud-drive cloud-drive cloud-storage dropbox google-drive guzzlehttp microsoft-onedrive onedrive php
Last synced: 11 days ago
JSON representation
Store and retrieve files in cloud storage providers (i.e. Dropbox, Google Drive, Microsoft OneDrive, Amazon Cloud Drive, etc.)
- Host: GitHub
- URL: https://github.com/PHLAK/CloudDrop
- Owner: PHLAK
- License: mit
- Archived: true
- Created: 2017-06-21T06:45:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-11T03:02:12.000Z (about 7 years ago)
- Last Synced: 2024-08-01T16:54:23.839Z (3 months ago)
- Topics: amazon-cloud-drive, cloud-drive, cloud-storage, dropbox, google-drive, guzzlehttp, microsoft-onedrive, onedrive, php
- Language: PHP
- Size: 18.6 KB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CloudDrop
=========[![Latest Stable Version](https://img.shields.io/packagist/v/PHLAK/CloudDrop.svg)](https://packagist.org/packages/PHLAK/CloudDrop)
[![Total Downloads](https://img.shields.io/packagist/dt/PHLAK/CloudDrop.svg)](https://packagist.org/packages/PHLAK/CloudDrop)
[![Author](https://img.shields.io/badge/author-Chris%20Kankiewicz-blue.svg)](https://www.ChrisKankiewicz.com)
[![License](https://img.shields.io/packagist/l/PHLAK/CloudDrop.svg)](https://packagist.org/packages/PHLAK/CloudDrop)
[![Build Status](https://img.shields.io/travis/PHLAK/CloudDrop.svg)](https://travis-ci.org/PHLAK/CloudDrop)Store and retrieve files in cloud storage providers (i.e. Dropbox) -- by, [Chris Kankiewicz](https://www.ChrisKankiewicz.com)
Introduction
------------...
Like this project? Keep me caffeinated by [making a donation](https://paypal.me/ChrisKankiewicz).
Requirements
------------- [PHP](https://php.net) >= 7.0
Install with Composer
---------------------```bash
composer require phlak/clouddrop
```Initializing the Client
-----------------------First, import CloudDrop:
```php
use PHLAK\CloudDrop;
```Then instantiate the class for your cloud storage provider of choice:
```php
$provider = CloudDrop\Provider::init($providerName, array $config);
```For example, to instantate the Dropbox provider you would use the following:
```php
$dropbox = CloudDrop\Provider::init('dropbox',['access_token' => 'your_access_token']);
```Configuration
-------------...
Usage
-----...
Changelog
---------A list of changes can be found on the [GitHub Releases](https://github.com/PHLAK/CloudDrop/releases) page.
Troubleshooting
---------------Please report bugs to the [GitHub Issue Tracker](https://github.com/PHLAK/CloudDrop/issues).
Copyright
---------This project is licensed under the [MIT License](https://github.com/PHLAK/CloudDrop/blob/master/LICENSE).