PHPackages                             aytackayin/tinymce - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. aytackayin/tinymce

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

aytackayin/tinymce
==================

Filament 4/3 Tinymce Plugin with Code Editor

1.0.6(3mo ago)024MITJavaScript

Since Dec 22Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/aytackayin/tinymce)[ Packagist](https://packagist.org/packages/aytackayin/tinymce)[ RSS](/packages/aytackayin-tinymce/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (8)Used By (0)

Filament TinyMCE Plugin
=======================

[](#filament-tinymce-plugin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/9614a638cb7b5790f657855d8d632bf867f42a8dad359fc9522fa8554fe65b5e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61797461636b6179696e2f74696e796d63652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/aytackayin/tinymce)[![Total Downloads](https://camo.githubusercontent.com/d1a020e38ac591b8e6679358cca612a647acc57a572a2a6773b22656c1956ddd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61797461636b6179696e2f74696e796d63652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/aytackayin/tinymce)

A powerful TinyMCE integration for Filament PHP (Version 3.x &amp; 4.x) with a built-in Code Editor, File Manager support, and comprehensive configuration options.

Features
--------

[](#features)

- **Filament V3 &amp; V4 Support**: Fully compatible with the latest Filament versions.
- **Code Editor**: Integrated source code editor with syntax highlighting using Ace Editor.
- **Media Manager**: Easy integration with Filament's media handling.
- **Customizable**: Full control over toolbar, plugins, and profiles.
- **Multi-language**: Automatic language detection based on app locale.
- **Dark Mode**: Automatically adapts to system/Filament dark mode preferences.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require aytackayin/tinymce
```

### Publish Assets (Required)

[](#publish-assets-required)

You **must** publish the package assets (JavaScript &amp; CSS) for the editor to work correctly:

```
php artisan vendor:publish --tag="aytackayin-tinymce-assets"
```

### Publish Config (Optional)

[](#publish-config-optional)

If you want to customize the toolbar, plugins, or profiles, publish the config file:

```
php artisan vendor:publish --tag="aytackayin-tinymce-config"
```

Usage
-----

[](#usage)

You can use the `TinyEditor` component in your Filament Forms resources:

```
use Aytackayin\Tinymce\Forms\Components\TinyEditor;

TinyEditor::make('content')
    ->columnSpanFull()
    ->required();
```

### Advanced Usage

[](#advanced-usage)

```
TinyEditor::make('description')
    ->profile('default') // Select a profile from config
    ->minHeight(300)
    ->maxHeight(600)
    // ->toolbarSticky(true) // Enable sticky toolbar
    // ->language('en') // Force a specific language
    ->columnSpanFull();
```

Configuration
-------------

[](#configuration)

You can configure different profiles (simple, full, etc.) in the `config/aytackayin-tinymce.php` file after publishing it.

```
'profiles' => [
    'default' => [
        'plugins' => 'advlist codesample ... codeeditor', // 'codeeditor' enables the source code view
        'toolbar' => 'undo redo | formatselect | bold italic | ... | codeeditor',
        // ...
    ],
],
```

Contributing
------------

[](#contributing)

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License
-------

[](#license)

[MIT](https://choosealicense.com/licenses/mit/)

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance79

Regular maintenance activity

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~128 days

Recently: every ~3 days

Total

7

Last Release

109d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f11e3bb1aee8416f2f7b655749c5b68d61ced142b245f4ada21e748872e64b07?d=identicon)[aytackayin](/maintainers/aytackayin)

---

Top Contributors

[![aytackayin](https://avatars.githubusercontent.com/u/17097808?v=4)](https://github.com/aytackayin "aytackayin (5 commits)")

### Embed Badge

![Health badge](/badges/aytackayin-tinymce/health.svg)

```
[![Health](https://phpackages.com/badges/aytackayin-tinymce/health.svg)](https://phpackages.com/packages/aytackayin-tinymce)
```

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[pxlrbt/filament-environment-indicator

Indicator for the current environment inside Filament

151923.9k12](/packages/pxlrbt-filament-environment-indicator)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

118126.9k](/packages/stephenjude-filament-feature-flags)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
