missionx-co/cva-php

Class Variance Authority implementation in PHP

1.1.2 2025-06-02 21:32 UTC

This package is auto-updated.

Last update: 2025-06-03 19:31:47 UTC


README

Class Variance Authority implementation in PHP.

Installation

composer require missionx-co/cva-php

Usage

Basic Example

use MissionX\ClassVariantAuthority\ClassVariantAuthority;
use MissionX\ClassVariantAuthority\Option;

// Create a button component with variants
$button = ClassVariantAuthority::parse([
    'base' => 'text-sm px-3 py-2 rounded-md',
    'variants' => [
        'color' => [
            'primary' => 'bg-blue-500 text-white',
            'secondary' => 'bg-gray-200 text-gray-800',
            'danger' => 'bg-red-500 text-white',
        ],
        'size' => [
            'sm' => 'px-2 py-1 text-xs',
            'md' => 'px-3 py-2 text-sm',
            'lg' => 'px-4 py-3 text-base',
        ],
    ],
    'compound_variants' => [
        [
            'color' => 'primary',
            'size' => 'lg',
            'class' => 'font-bold',
        ],
    ],
    'default_variants' => [
        'size' => 'md',
        'color' => 'primary',
    ],
]);

// Use the component
echo $button(); // "text-sm px-3 py-2 rounded-md bg-blue-500 text-white"
echo $button(['size' => 'lg']); // "text-sm px-4 py-3 rounded-md bg-blue-500 text-white text-base font-bold"
echo $button(['color' => 'secondary']); // "text-sm px-3 py-2 rounded-md bg-gray-200 text-gray-800"

Builder API

You can also use the builder API to create components:

use MissionX\ClassVariantAuthority\ClassVariantAuthority;
use MissionX\ClassVariantAuthority\CompoundVariants;
use MissionX\ClassVariantAuthority\Variant;
use MissionX\ClassVariantAuthority\Option;

$button = ClassVariantAuthority::make()
    ->setBase('text-sm px-3 py-2 rounded-md')
    ->addVariant(
        Variant::make('color')
            ->add('primary', 'bg-blue-500 text-white')
            ->add('secondary', 'bg-gray-200 text-gray-800')
            ->add('danger', 'bg-red-500 text-white')
    )
    ->addVariant(
        Variant::make('size')
            ->add('sm', 'px-2 py-1 text-xs')
            ->add('md', 'px-3 py-2 text-sm')
            ->add('lg', 'px-4 py-3 text-base')
    )
    ->addCompoundVariants(
        CompoundVariants::make()
            ->where('color', 'primary')
            ->where('size', 'lg')
            ->setClasses('font-bold')
    )
    ->setDefaultVariants([
        'size' => 'md',
        'color' => 'primary',
    ]);

// Use the component
echo $button(['color' => 'danger', 'size' => 'sm']);

Features

  • Type-safe variant definitions
  • Compound variants for complex combinations
  • Default variants
  • Automatic class merging using TailwindMerge
  • Fluent builder API

Configuration

You can pass configuration to the underlying TailwindMerge package using the withConfig method:

use MissionX\ClassVariantAuthority\Config;

$config = new Config();
$config->tailwindMergeConfig = [
    // TailwindMerge configuration
];

// Add cache for better performance
$config->cache = new YourCacheImplementation();

// Create instance with config
$button = ClassVariantAuthority::withConfig($config)
    ->setBase('text-base')
    // Add variants...
    ;

// Or add config to existing instance
$button = ClassVariantAuthority::make()
    ->setBase('text-base')
    ->setConfig($config);

Credits

License

The MIT License (MIT). Please see License File for more information.