sopamo/laravel-filepond
Composer 安装命令:
composer require sopamo/laravel-filepond
包简介
Laravel backend module for filepond uploads
README 文档
README
Laravel FilePond Backend
An all in one Laravel backend for FilePond
🚀 Be up and running in 2 minutes
Laravel setup
Require this package in the composer.json of your Laravel project.
composer require sopamo/laravel-filepond
If you need to edit the configuration, you can publish it with:
php artisan vendor:publish --provider="Sopamo\LaravelFilepond\LaravelFilepondServiceProvider"
// Get the temporary path using the serverId returned by the upload function in `FilepondController.php` $filepond = app(\Sopamo\LaravelFilepond\Filepond::class); $disk = config('filepond.temporary_files_disk'); $path = $filepond->getPathFromServerId($serverId); $fullpath = Storage::disk($disk)->get($filePath); // Move the file from the temporary path to the final location $finalLocation = public_path('output.jpg'); \File::move($fullpath, $finalLocation);
External storage
You can use any Laravel disk as the storage for temporary files. If you use a different disk for the temporary files and the final location, you will need to copy the file from the temporary location to the new disk then delete the temporary file yourself.
If you are using the default local disk, make sure the /storage/app/filepond directory exists in your project and is writable.
Filepond client setup
This is the minimum Filepond JS configuration you need to set after installing laravel-filepond.
FilePond.setOptions({ server: { url: '/filepond/api', process: { url: "/process", headers: (file: File) => { // Send the original file name which will be used for chunked uploads return { "Upload-Name": file.name, "X-CSRF-TOKEN": "{{ csrf_token() }}", } }, }, revert: '/process', patch: "?patch=", headers: { 'X-CSRF-TOKEN': '{{ csrf_token() }}' } } });
Package development
Please make sure all tests run successfully before submitting a PR.
Testing
- Start a docker container to execute the tests in with
docker run -it -v $PWD:/app composer /bin/bash - Run
composer install - Run
./vendor/bin/phpunit
sopamo/laravel-filepond 适用场景与选型建议
sopamo/laravel-filepond 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 303.66k 次下载、GitHub Stars 达 215, 最近一次更新时间为 2019 年 02 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「image」 「upload」 「laravel」 「filepond」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 sopamo/laravel-filepond 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sopamo/laravel-filepond 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 sopamo/laravel-filepond 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
The Yii2 extension uses jQuery PrettyPhoto and OwlCarousel js and makes image galary from php array of structure defined.
Laravel Media Popup to upload/view the files
Yii2 prettyPhoto image galary widget uses Lightbox view control jquery.prettyphoto.js
统计信息
- 总下载量: 303.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 216
- 点击次数: 24
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-02-28