juliomotol / laravel-ckeditor4
CKEditor4 Publisher for Laravel >= 5.5
Requires
- php: ^7.0
- ckeditor/ckeditor: ^4.15
- illuminate/console: >=5.5|^6.0|^7.0|^8.0
- illuminate/filesystem: >=5.5|^6.0|^7.0|^8.0
- illuminate/support: >=5.5|^6.0|^7.0|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- orchestra/testbench: >=3.5|^4.0|^5.0|^6.0
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2024-07-28 22:43:03 UTC
README
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/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