@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Recca0120\Elfinder; |
| 4 | 4 | |
| 5 | -use elFinder; |
|
| 6 | -use Illuminate\Support\Arr; |
|
| 7 | 5 | use Illuminate\Routing\Router; |
| 6 | +use Illuminate\Support\Arr; |
|
| 8 | 7 | use Illuminate\Support\ServiceProvider; |
| 8 | +use elFinder; |
|
| 9 | 9 | |
| 10 | 10 | class ElfinderServiceProvider extends ServiceProvider |
| 11 | 11 | { |
@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Recca0120\Elfinder\Http\Controllers; |
| 4 | 4 | |
| 5 | +use Illuminate\Contracts\Routing\ResponseFactory; |
|
| 6 | +use Illuminate\Filesystem\Filesystem; |
|
| 5 | 7 | use Illuminate\Http\Request; |
| 6 | -use Recca0120\Elfinder\Connector; |
|
| 7 | 8 | use Illuminate\Routing\Controller; |
| 8 | -use Illuminate\Filesystem\Filesystem; |
|
| 9 | -use Illuminate\Contracts\Routing\ResponseFactory; |
|
| 9 | +use Recca0120\Elfinder\Connector; |
|
| 10 | 10 | |
| 11 | 11 | class ElfinderController extends Controller |
| 12 | 12 | { |
@@ -2,12 +2,12 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Recca0120\Elfinder; |
| 4 | 4 | |
| 5 | -use Closure; |
|
| 6 | 5 | use ArrayObject; |
| 7 | -use Illuminate\Support\Arr; |
|
| 8 | -use Illuminate\Http\Request; |
|
| 9 | -use Illuminate\Filesystem\Filesystem; |
|
| 6 | +use Closure; |
|
| 10 | 7 | use Illuminate\Contracts\Routing\UrlGenerator; |
| 8 | +use Illuminate\Filesystem\Filesystem; |
|
| 9 | +use Illuminate\Http\Request; |
|
| 10 | +use Illuminate\Support\Arr; |
|
| 11 | 11 | |
| 12 | 12 | class Options extends ArrayObject |
| 13 | 13 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Recca0120\Elfinder; |
| 4 | 4 | |
| 5 | -use elFinderConnector; |
|
| 6 | 5 | use Symfony\Component\HttpFoundation\StreamedResponse; |
| 6 | +use elFinderConnector; |
|
| 7 | 7 | |
| 8 | 8 | class Connector extends elFinderConnector |
| 9 | 9 | { |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -use League\Flysystem\Filesystem; |
|
| 4 | -use League\Flysystem\Adapter\Local; |
|
| 3 | +use Hypweb\Flysystem\Cached\Extra\DisableEnsureParentDirectories; |
|
| 5 | 4 | use Hypweb\Flysystem\Cached\Extra\Hasdir; |
| 6 | -use League\Flysystem\Cached\CachedAdapter; |
|
| 7 | 5 | use Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter; |
| 6 | +use League\Flysystem\Adapter\Local; |
|
| 7 | +use League\Flysystem\Cached\CachedAdapter; |
|
| 8 | 8 | use League\Flysystem\Cached\Storage\Adapter as ACache; |
| 9 | -use Hypweb\Flysystem\Cached\Extra\DisableEnsureParentDirectories; |
|
| 9 | +use League\Flysystem\Filesystem; |
|
| 10 | 10 | |
| 11 | 11 | elFinder::$netDrivers['googledrive'] = 'FlysystemGoogleDriveNetmount'; |
| 12 | 12 | |
@@ -3,9 +3,9 @@ |
||
| 3 | 3 | use Kunnu\Dropbox\Dropbox; |
| 4 | 4 | use Kunnu\Dropbox\DropboxApp; |
| 5 | 5 | use Kunnu\Dropbox\DropboxFile; |
| 6 | +use Kunnu\Dropbox\Exceptions\DropboxClientException; |
|
| 6 | 7 | use Kunnu\Dropbox\Models\FileMetadata; |
| 7 | 8 | use Kunnu\Dropbox\Models\FolderMetadata; |
| 8 | -use Kunnu\Dropbox\Exceptions\DropboxClientException; |
|
| 9 | 9 | |
| 10 | 10 | elFinder::$netDrivers['dropbox2'] = 'Dropbox2'; |
| 11 | 11 | |