avtonom/creole-full-bundle

Bundle for Symfony for creole markdown Wiki parser for PHP from softark/creole

v1.1.3 2015-10-05 01:04 UTC

This package is not auto-updated.

Last update: 2024-04-17 15:27:57 UTC


README

Bundle for Symfony for creole markdown Wiki parser for PHP from softark/creole https://github.com/softark/creole#readme

Installation

Retrieve the bundle with composer:

.. code-block:: sh

php composer.phar require avtonom/creole-full-bundle --no-update

Installation is recommended to be done via [composer][] by running:

composer require avtonom/creole-full-bundle "~1.1"

Alternatively you can add the following to the require section in your composer.json manually:

"avtonom/creole-full-bundle": "~1.1"

Run composer update afterwards.

Register these bundles in your AppKernel:

  <?php
  // app/AppKernel.php
  public function registerBundles()
  {
      return array(
          // ...
          new Avtonom\CreoleBundle\AvtonomCreoleBundle(),
          // ...
      );
  }

todo