laravox / documentor
Easy way to document your laravel projects!
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/laravox/documentor
This package is auto-updated.
Last update: 2026-01-14 06:09:48 UTC
README
Steps to install
- You need to install phive (https://github.com/phar-io/phive)
- phive install --force-accept-unsigned phpDocumentor
- install the package:
composer require laravox/documentor - add the next attribute in your app/Console/Kernel.php file:
protected $commands = [ \Laravox\Documentor\Console\Commands\DocumentorBuildCommand::class, ];
How to use it?
php artisan documentor:build {source?} {destiny?}
The {source?} variable allows you to specify the folder which will be documented
The {destiny?} variable allows you to specify the folder where the documentation will be stored.
Both variables are optional.
The default value for {source} is the app/ folder.
The default value for {destiny} is the docs/ folder.
Any issue or suggestion is welcomedto improve this repository.