avtonom / creole-full-bundle
Bundle for Symfony for creole markdown Wiki parser for PHP from softark/creole
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- softark/creole: *@dev
- symfony/framework-bundle: ~2.3
This package is not auto-updated.
Last update: 2024-11-13 18:25:08 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