Download the PHP package haosheng0211/filament-forms-tinymce without Composer

On this page you can find all versions of the php package haosheng0211/filament-forms-tinymce. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package filament-forms-tinymce

Filament Forms TinyMCE

Latest Version on Packagist GitHub Tests Action Status Total Downloads

A Filament v3 form field that integrates TinyMCE 8 rich text editor.

Requirements

Installation

Publish the config file:

Usage

Basic

Profiles

Profiles let you define reusable editor presets in the config file. Three built-in profiles are provided: default, simple, and full.

Define your own profiles in the config:

Priority order: instance method > profile > TinyMCE built-in default

Editor options

All TinyMCE options can also be set directly via fluent methods without using profiles:

For any TinyMCE init option not covered by a dedicated method, use options():

Regex options (protect)

TinyMCE's protect option requires JavaScript RegExp objects, which cannot survive JSON serialization from PHP. Pass them as "/pattern/flags" strings instead — they are converted to RegExp automatically on the client:

File browser

The file browser integration is enabled by default. When enabled, TinyMCE's file_picker_callback dispatches Livewire events (open-media-browser / media-selected) so you can connect your own media browser component.

Tip: Install haosheng0211/filament-media-browser for a ready-made media browser that works out of the box.

Disable file browser

Media disk & directory

You can specify the disk and directory to pass to the media browser:

URL format

TinyMCE always requests full URLs from the media browser (storeAsUrl: true), regardless of the media browser's global store_as_url setting. The final URL format stored in HTML is controlled by TinyMCE's built-in URL conversion options:

Desired output Configuration
/storage/media/photo.jpg (default) relative_urls: false, remove_script_host: true
http://domain.com/storage/media/photo.jpg relative_urls: false, remove_script_host: false
Keep original URL convert_urls: false

The default profile already includes relative_urls: false and remove_script_host: true, which produces portable absolute paths without the domain.

For email templates that require full URLs (email clients cannot resolve relative paths), use a dedicated profile or override via options():

Merge tags

Insert predefined variables into the editor via a toolbar dropdown — useful for email templates. No TinyMCE Premium required.

Via profile (recommended)

Define merge tags in a profile so all fields using that profile share the same variables:

Selecting "使用者名稱" inserts {{user.name}} into the editor.

Via instance methods

Instance methods take priority over profile settings:

TinyMCE source

TinyMCE is loaded from jsDelivr CDN with SRI integrity check. No API key required.

You can customise the CDN URL and version in the config:

Config reference

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

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.


All versions of filament-forms-tinymce with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
filament/filament Version ^3.0
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0||^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package haosheng0211/filament-forms-tinymce contains the following files

Loading the files please wait ...