Skip to content

A flysystem driver for OneDrive that uses the Microsoft Graph API

License

Notifications You must be signed in to change notification settings

cialtronale/flysystem-onedrive

 
 

Repository files navigation

This package is based on the repo maintained by hevelius.

Flysystem adapter for the Microsoft OneDrive API

Latest Version on Packagist

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 cialtronale/flysystem-onedrive

or add direct this repo in composer.json

"repositories": [
        {
            "url": "https://github.com/cialtronale/flysystem-onedrive.git",
            "type": "git"
        }
    ],

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 Azure Portal.

use Microsoft\Graph\Graph;
use League\Flysystem\Filesystem;
use MarioPerrotta\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.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

A flysystem driver for OneDrive that uses the Microsoft Graph API

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%