yespbs/egnyte

Manage Egnyte uploads with the Egnyte public API

Maintainers

Details

github.com/yespbs/egnyte

Source

Installs: 8 206

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 4

Type:package

0.0.2 2017-09-11 05:30 UTC

This package is not auto-updated.

Last update: 2024-04-14 00:33:42 UTC


README

Egnyte PHP Client

Updates

  • Added support for copy
  • Added support for listDir
  • Renamed psr-4 methods
  • @todo Chunked Upload
  • @todo TestCases

Usage

$client = new \Yespbs\Egnyte\Client( 'domain', 'oauth token' );

$fileClient = new \Yespbs\Egnyte\Model\File( $client );

// OR $fileClient = new \Yespbs\Egnyte\Model\File( null, 'domain', 'oauth token' );

$response = $fileClient->upload('/Shared/Documents/test.txt', 'test file upload' );