exsyst / security-bundle

一些安全工具,帮助 symfony 开发

安装: 8

依赖: 0

建议者: 0

安全: 0

星星: 0

关注者: 4

分支: 0

开放问题: 0

类型:symfony-bundle

v0.0.1 2015-10-20 12:12 UTC

This package is auto-updated.

Last update: 2024-09-17 22:49:53 UTC


README

Build Status Scrutinizer Code Quality Code Coverage Total Downloads Latest Stable Version

安装

步骤 1:下载 Bundle

打开命令行控制台,进入您的项目目录,并执行以下命令以下载此 Bundle 的最新稳定版本

$ composer require exsyst/security-bundle

此命令需要您全局安装 Composer,具体请参阅 Composer 文档中的安装章节

步骤 2:启用 Bundle

然后,通过将其添加到项目 app/AppKernel.php 文件中注册的 Bundle 列表中来启用该 Bundle。

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new EXSyst\Bundle\SecurityBundle\EXSystSecurityBundle(),
        );

        // ...
    }

    // ...
}