rolandalla / laravel-nextcloud
Laravel WebDAV| Nextcloud 文件系统
1.1.0
2023-10-18 14:44 UTC
Requires
- php: ^8.0 || ^8.1
- illuminate/filesystem: ^8.67 || ^9.0 || ^9.21 || ^10.0
- league/flysystem-webdav: ^3.0
Requires (Dev)
- orchestra/testbench: ^3.0
- phpunit/phpunit: ^9.5 || ^9.6
README
关于这个想法的信用归功于: https://github.com/protonemedia/laravel-webdav#laravel-webdav
安装
通过 Composer
$ composer require rolandalla/laravel-nextcloud
创建 NextCloud 文件系统磁盘
// config/filesystems.php 'disks' => [ ... 'nextCloud' => [ 'driver' => 'nextCloud', 'baseUri' => env('NEXT_CLOUD_URL','https://your-web-dat-domain.com'), //replace by yours baseUri 'userName' => env('NEXT_CLOUD_USERNAME','web-dav-username'), 'password' => env('NEXT_CLOUD_PASSWORD','web-dav-password'), 'pathPrefix' => env('NEXT_CLOUD_PATH_PREFIX',false), // Default value is null ], ... ];
致谢
许可证
MIT 许可证 (MIT)。