juliomotol/laravel-ckeditor4

CKEditor4 Publisher for Laravel >= 5.5

v1.1.0 2020-11-05 02:27 UTC

This package is auto-updated.

Last update: 2024-05-05 10:06:22 UTC


README

Latest Version on Packagist GitHub Tests Action Status Total Downloads

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/ckeditor4 by 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