n445/symfonymedia

用于上传媒体的symfony组件

安装次数: 21

依赖关系: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

公开问题: 2

类型:symfony-bundle

1.1.1 2020-08-02 14:03 UTC

This package is auto-updated.

Last update: 2024-09-30 01:30:08 UTC


README

步骤 1:下载组件

composer require n445/symfonymedia

步骤 2:启用组件

然后,将组件添加到项目的 app/AppKernel.php 文件中注册的组件列表中,以启用该组件

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new N445\Contact\N445Image(),
        ];

        // ...
    }

    // ...
}