ui-awesome/form-model

UIAwesome Form Model for PHP.

0.1.0 2024-03-18 21:46 UTC

This package is auto-updated.

Last update: 2024-04-18 22:09:07 UTC


README

121752654?s=200&v=4

UIAwesome Form Model for PHP.


PHPUnit Codecov Infection Psalm Psalm Coverage Style ci

Is a library that provides a flexible and easy way to create and validate fields for web forms, models, and other data structures.

<?php

declare(strict_types=1);

namespace App\FormModel;

use UIAwesome\FormModel\AbstractFormModel;

final class User extends AbstractFormModel
{
    private string $username = '';

    public function getHints(): array
    {
        return [
            'username' => 'The hint for the field.',
        ];
    }
    
    public function getLabels(): array
    {
        return [
            'username' => 'The label for the field.',
        ];
    }

    public function getPlaceholders(): array
    {
        return [
            'username' => 'The placeholder for the field.',
        ];
    }
}

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist ui-awesome/form-model:"^0.1"

or add

"ui-awesome/form-model": "^0.1"

Usage

Check the documentation docs to learn about usage.

Testing

Check the documentation testing to learn about testing.

Support versions

PHP81

License

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

Our social networks

Twitter