Package Data | |
---|---|
Maintainer Username: | AnandPilania |
Maintainer Contact: | pilaniaanand@gmail.com (Anand Pilania) |
Package Create Date: | 2017-06-29 |
Package Last Update: | 2017-08-04 |
Language: | HTML |
License: | MIT |
Last Refreshed: | 2024-11-21 03:01:22 |
Package Statistics | |
---|---|
Total Downloads: | 13 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Docs reader for laravel, currently supported extensions is: .md
Helpful to use it as knowledge base
or faq
of your project or features.
.md
docsInstall:
git
: git clone https://github.com/AnandPilania/laravel-docs.git
composer
: composer install anandpilania/laravel-docs
Register Provider
to config/app.php
:
AP\Docs\ServiceProvider::class
Instead of Facade
, I used Contract
, so Docs
can be directly accessible to any class
.
Publish the config
and resources
:
php artisan vendor:publish
Configure package according to your need (app/docs.php
):
disk.root
=> Root path of all documents (by default: storage/app/docs)http
: Responsible for default routes
prefix
=> Route prefix (default: /docs)middleware
=> By default, web
is used as a middleware groupdefault' : This section responsible for rendering the default
doc`
vendor
=> Default: storage/app/docs/laravelversion
=> Default: 5.4page
=> Load default (installation) file while accessing //HOSTNAME/docs/laravel/5.4.index
=> Default index
fileextension
=> Currently this package supports only .md
, so don't change it.security
: Limit the access of docs
enabled
=> Its up to you, to enable this feature or not. true
||false
file
=> Configure the file name of security
according to your wish. default security.json
Add this security.file
to the vendor
directory.extensions
:
supported
=> Add extensions those are supported for render (currently .md
), remaning extensions will excludedexcluded
=> Files containing these extensions will not displayed in the listSample security.json
(ex: /storage/docs/app/laravel/security.json):
{ "roles": ["users"], "permissions": ["docs.show.versions"] }
route
are hard-coded to the ServiceProvider
file of the package.