martinpl / tailwind-merge
PHP port of tailwind-merge: merge Tailwind CSS class strings by removing style conflicts
Package info
github.com/martinpl/tailwind-merge
Language:TypeScript
pkg:composer/martinpl/tailwind-merge
dev-main
2026-04-04 15:48 UTC
Requires
- php: >=8.3
Requires (Dev)
- pestphp/pest: ^3.0
Suggests
- laravel/framework: Required to use the Laravel Service Provider and the $attributes->twMerge() Blade macro (^10.0|^11.0|^12.0)
This package is auto-updated.
Last update: 2026-04-04 15:48:54 UTC
README
tailwind-merge
Utility function to efficiently merge Tailwind CSS classes in JS without style conflicts.
import { twMerge } from 'tailwind-merge' twMerge('px-2 py-1 bg-red hover:bg-dark-red', 'p-3 bg-[#B91C1C]') // → 'hover:bg-dark-red p-3 bg-[#B91C1C]'
- Supports Tailwind v4.0 up to v4.2 (if you use Tailwind v3, use tailwind-merge v2.6.0)
- Works in all modern browsers and maintained Node versions
- Fully typed
- Check bundle size on Bundlephobia