doclify / laravel
Integrates the Doclify PHP SDK with Laravel.
Installs: 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/doclify/laravel
Requires
- php: ^7.2
- doclify/php: dev-master
- laravel/framework: ~5.4|~6.0|^7.1
Requires (Dev)
- orchestra/testbench: ^5.1
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-10-07 20:37:15 UTC
README
This library provides an easy-to-use integration between the Laravel framework and the Doclify SDK. It requires at least PHP 7.2.
Setup
Add this package to your application by using Composer and executing the following command:
composer require doclify/laravel
Add the service provider to the providers array in config/app.php:
'providers' => [ Doclify\Laravel\DoclifyServiceProvider::class, ],
Configuration
Publish the config file:
php artisan vendor:publish --provider="Doclify\Laravel\DoclifyServiceProvider"
This will add doclify.php to your /config folder. Next, add your repository and API token to your .env file:
DOCLIFY_REPOSITORY="your_repository_name"
DOCLIFY_TOKEN="your_token"
License
Copyright (c) 2020 Doclify. Code released under the MIT license. See LICENSE for further details.