appventus/php-doc-fill-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Bundle helping you to fill your php docs

dev-master 2013-06-25 14:51 UTC

This package is not auto-updated.

Last update: 2023-07-31 08:06:33 UTC


README

The PhpDocFillBundle help you to write your documentation for all your symfony2 projects.

Install

Get the source with composer :

require "appventus/php-doc-fill-bundle": "dev-master"

Declare the bundle in your AppKernel.php:

public function registerBundles() {
    $bundles = array(
        [...]
        new AppVentus\PhpDocFillBundle\AvPhpDocFillBundle(),
        [...]

Then declare the routing.yml in your application:

# PhpDocFillBundle Routing
av_php_doc_fill_bundle_routes:
    resource: "@AvPhpDocFillBundle/Resources/config/routing.yml"
    prefix:   /

Then add the php templating engine support in your framework configuration :

framework:
    templating:
        engines: ['twig', 'php']
    ...

You now have a new action available in the symfony2 debug bar.

Enjoy !

Credits

This bundle is based on existing library created by Clement Nedelcu. Thanks him for his work.