laravel-ckeditor4 maintained by juliomotol
Description
CKEditor4 Publisher for Laravel >= 5.5
Author
Last update
2020/11/05 03:27
(dev-master)
License
Downloads
169
Tags
Laravel CKEditor4
CKEditor4 Publisher for Laravel >= 5.5.
Installation
You can install the package via composer:
composer require juliomotol/laravel-ckeditor4
Config
| Key | Default Value | Description |
|---|---|---|
publish_path |
public_path('js/plugins/ckeditor4') |
Use this option control where you want to publish the CKEditor4 assets. |
If you want to make changes in the configuration you can publish the config file using:
php artisan vendor:publish --provider="JulioMotol\CKEditor4\CKEdtor4ServiceProvider" --tag="config"
Usage
To publish the CKEditor4 assets, simply run the command:
# Install ckeditor in default path
php artisan ckeditor4:install
# Install ckeditor to a certain path
php artisan ckeditor4:install --path=public/foo/bar
CKEditor4 assets will be published in
./public/js/plugins/ckeditor4by default.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
Bootstrapped with Package Skeleton Laravel
This package as generated using Spatie's Package Skeleton Laravel Template