π Streamline your Laravel package development with automatic facade documentation using Docgen for Laravel Facade.
Docgen for Laravel packages, the ultimate solution for Laravel package developers.
This heroic package automatically generates documentation for your Laravel package facade, eliminating the tedious task of maintaining it yourself.
With this package, IDEs will provide you and the developers using your package with method suggestions, making your development journey a breeze.
You can install the package via composer:
composer require irazasyed/docgen --dev
There are a number of ways to use the CLI tool.
Let's start with the basic usage.
Call the command with the name of the facade:
vendor/bin/docgen -f "Namespace\Path\To\Laravel\Facade::class"
Create a new config file in your package's root directory named docgen.php
and add the following code:
<?php
return [
'facade' => Namespace\Path\To\Laravel\Facade::class,
// Optional
// Path\To\Class::class => [Excluded Methods Array]
'classes' => [],
// Global Excluded Methods
'excludedMethods' => [],
];
Run the following command to generate the documentation and apply it to the facade:
vendor/bin/docgen
You can also store the config file elsewhere and provide the path using the -c
or --config
option.
Example:
vendor/bin/docgen -c path/to/docgen.php
If your Laravel facade is linked to a chain of classes that require documentation, you can provide an array of class names. Additionally, if you want to exclude certain methods from the documentation of a specific class, you can pass an array containing the names of those methods.
To illustrate, consider the following example which demonstrates how to use this approach with the Telegram Bot SDK's Laravel Facade:
<?php
// docgen.php
return [
'facade' => Telegram\Bot\Laravel\Facades\Telegram::class,
'classes' => [
\Telegram\Bot\BotsManager::class,
\Telegram\Bot\Api::class => [
'setContainer',
'getWebhookUpdates',
],
\Telegram\Bot\Commands\CommandBus::class => [
'getTelegram',
'setTelegram',
],
],
// Global Excluded Methods
'excludedMethods' => [],
];
Call the command to generate and apply the docs.
vendor/bin/docgen
Generate the documentation for given classes.
$classes
- The class name or an array of[class => (optional) [excluded methods]]
to generate documentation using its methods.$globalExcludedMethods
- (optional) An array of methods to be excluded when generating docs.
Docgen
- The Docgen instance.
Docgen::generate([
// Class Name => [Excluded Methods]
\App\Some\Class::class => ['method1', 'method2'],
\App\Some\OtherClass::class,
])->apply(\Namespace\To\Facade::class); // Apply to Facade.
Get the generated documentation.
string
- The generated documentation.
Apply the generated documentation to the given class name or defaults to the class used to generate docs.
$className
- (optional) The class name to apply the generated documentation to.
bool
- True if it was successful, false otherwise.
- Add github action to automatically maintain docs.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.