ECDocs is an API Documentation generator, based on dedoc/scramber. The only reason this package exists is so that way I can make the same package, but make sure that it's updated at a timely manner, and to make sure that I can add any extra features that I want to have in the original version.
You can install the package via composer:
composer require elijahcruz/ecdocs
You can publish and run the migrations with:
php artisan vendor:publish --tag="ecdocs-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="ecdocs-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="ecdocs-views"
$ecdocs = new ECDoc\Ecdocs();
echo $ecdocs->echoPhrase('Hello, ECDoc!');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.