appventus / php-doc-fill-bundle
Bundle helping you to fill your php docs
Installs: 803
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
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.