adamquaile / silex-autodocs
Automatically generate documentation, only silex routes supported currently
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/adamquaile/silex-autodocs
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-09-25 09:12:35 UTC
README
Silex AutoDocs currently consists of one component, automatic routing documentation; more components are to follow.
Installation / Usage
This can be installed via packagist by require
ing adamquaile/silex-autodocs
from packagist.
{
"name": "Your App",
"require": {
"adamquaile/silex-autodocs": "*"
}
}
In your bootstrap file you must register the app in order to have the url /autodocs/routes
available and usable.
<?php
$app = new \Silex\Application();
\AdamQuaile\Silex\AutoDocs\Routing::register($app);
All should be ready, now go to /autodocs/routes
. You should see a page like this: