nicolasbeauvais / flysystem-onedrive
Flysystem Adapter for the OneDrive API
Installs: 14 458
Dependents: 1
Suggesters: 1
Security: 0
Stars: 12
Watchers: 1
Forks: 7
Open Issues: 0
Requires
- php: ^7.0
- league/flysystem: ^1.0
- microsoft/microsoft-graph: ^1.0
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2020-02-18 03:22:04 UTC
README
Flysystem adapter for the Microsoft OneDrive API
This package contains a Flysystem adapter for OneDrive. Under the hood, the Microsoft Graph SDK is used.
Installation
You can install the package via composer:
composer require nicolasbeauvais/flysystem-onedrive
Usage
The first thing you need to do is get an authorization token for the Microsoft Graph API. For that you need to create an app on the Microsoft App Registration Portal.
use Microsoft\Graph\Graph; use League\Flysystem\Filesystem; use NicolasBeauvais\FlysystemOneDrive\OneDriveAdapter; $graph = new Graph(); $graph->setAccessToken('EwBIA8l6BAAU7p9QDpi...'); $adapter = new OneDriveAdapter($graph, 'root'); $filesystem = new Filesystem($adapter); // Or to use the approot endpoint: $adapter = new OneDriveAdapter($graph, 'special/approot');
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email nicolasbeauvais1@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.