用于上传媒体的symfony组件
github.com/N445/symfonymedia
源代码
问题
安装次数: 21
依赖关系: 0
建议者: 0
安全: 0
星标: 0
关注者: 3
分支: 0
公开问题: 2
类型:symfony-bundle
Requires
Requires (Dev)
None
Suggests
Provides
Conflicts
Replaces
MIT 74120a79bcab03ead75df26a73dad496e8222b1e
symfonymediaN445
This package is auto-updated.
Last update: 2024-09-30 01:30:08 UTC
composer require n445/symfonymedia
然后,将组件添加到项目的 app/AppKernel.php 文件中注册的组件列表中,以启用该组件
app/AppKernel.php
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new N445\Contact\N445Image(), ]; // ... } // ... }