morrislaptop/laravel-instantiate-rule 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

morrislaptop/laravel-instantiate-rule

最新稳定版本:v0.1.0

Composer 安装命令:

composer require morrislaptop/laravel-instantiate-rule

包简介

Validate against an object's constructor

README 文档

README

Validate against an object's constructor

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Your validation rules often belong in your domain model. Use the InstantiateRule to bring those rules into your Laravel validation.

class FormRequest 
{
    public function rules()
    {
        return [
            'email' => ['required', new InstantiateRule(EmailAddress::class)]
        ];
    }
}

Installation

You can install the package via composer:

composer require morrislaptop/laravel-instantiate-rule

Usage

As a simple rule

class FormRequest 
{
    public function rules()
    {
        return [
            'email' => ['required', new InstantiateRule(EmailAddress::class)]
        ];
    }
}

For complex objects, it's assumed array keys match the constructor object or are in the order of the constructor.

class Address
{
    public function __construct(
        private string $line1, 
        private string $postcode, 
        private string $country) {
    }
}

$this->jsonPost('/users', ['address' => [
    'line1' => '123 Fake St',
    'postcode' => '90210',
    'country' => 'Australia',
]]);

class FormRequest 
{
    public function rules()
    {
        return [
            'address' => ['required', new InstantiateRule(Address::class)]
        ];
    }
}

Or you can specify a custom static contructor if you like...

class FormRequest 
{
    public function rules()
    {
        return [
            'address' => ['required', new InstantiateRule(Address::class, 'createForValidation')]
        ];
    }
}

Testing

composer test

Changelog

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

Contributing

Please see CONTRIBUTING for details.

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.

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-08-01

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固