igdr/slugify-bundle

本包最新版本(v0.1)没有提供许可证信息。

Slugify Bundle

安装: 31

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

类型:symfony-bundle

v0.1 2017-01-30 12:07 UTC

This package is not auto-updated.

Last update: 2024-09-26 00:31:58 UTC


README

安装

将包添加到您的composer.json

composer require igdr/slugify-bundle

然后运行

php composer.phar update

然后将SlugifyBundle添加到您的应用程序内核

// app/IgdrKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Igdr\Bundle\SlugifyBundle\IgdrSlugifyBundle(),
        // ...
    );
}