nordsoftware/lumen-file-manager
最新稳定版本:2.2.0
Composer 安装命令:
composer require nordsoftware/lumen-file-manager
包简介
File manager module for the Lumen framework.
README 文档
README
File manager module for the Lumen PHP framework.
Please note that this module is still under active development.
NOTE: Branch 5.1 is for using Lumen Framework 5.1 and 5.2. Only bug fixes for 1.1.X should be tagged here.
Requirements
- PHP 5.6 or newer
- Composer
Usage
Installation
Run the following command to install the package through Composer:
composer require nordsoftware/lumen-file-manager
Bootstrapping
Please note that we only support Doctrine for now, but we plan to add Eloquent support soon.
Add the following lines to bootstrap/app.php:
$app->register('Nord\Lumen\FileManager\Doctrine\ORM\DoctrineServiceProvider'); // For ORM // $app->register('Nord\Lumen\FileManager\Doctrine\ODM\DoctrineServiceProvider'); // For ODM $app->register('Nord\Lumen\FileManager\FileManagerServiceProvider');
Add base_path('vendor/nordsoftware/lumen-file-manager/src/Doctrine/ORM/Resources') to your Doctrine mapping paths.
For ODM, add base_path('vendor/nordsoftware/lumen-file-manager/src/Doctrine/ODM/Resources').
You can now use the FileManager facade or inject the Nord\Lumen\FileManager\Contracts\FileManager where needed.
Example
Below is an example of how to use this module to save a file from the request and return a JSON response with the saved file's ID and URL.
public function uploadFile(Request $request, FileManager $fileManager) { $file = $fileManager->saveFile($request->file('upload')); return Response::json([ 'id' => $file->getId(), 'url' => $fileManager->getFileUrl($file), ]); }
Contributing
Please read the guidelines.
License
MIT. See LICENSE.
nordsoftware/lumen-file-manager 适用场景与选型建议
nordsoftware/lumen-file-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.42k 次下载、GitHub Stars 达 39, 最近一次更新时间为 2015 年 07 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「file」 「s3」 「manager」 「upload」 「laravel」 「cloudinary」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 nordsoftware/lumen-file-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nordsoftware/lumen-file-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 nordsoftware/lumen-file-manager 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
Laravel Media Popup to upload/view the files
PMVC Plugin for File information
Mapper for accessing resources in KWCMS
Text file manipulation
KCFinder web file manager
统计信息
- 总下载量: 2.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 40
- 点击次数: 20
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-07-05