Laravel 5 and Flysystem -


i installed extension https://github.com/grahamcampbell/laravel-flysystem. need work cloud (dropbox). set parameters flysystem.php dropboks. when try send file - error.

use illuminate\support\facades\app; ... flysystem::connection('dropbox')->put('test222.txt', 'bar'); 

fatalerrorexception in dropboxconnector.php line 69: class 'dropbox\client' not found http://clip2net.com/s/3l0hwe1

what problem? sorry bad english , thank you!

have installed dropbox adapter?

composer require league/flysystem-dropbox 

this install dropbox sdk php contain dropbox\client class.


Comments