承接 pacerit/laravel-polish-validation-rules 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

pacerit/laravel-polish-validation-rules

Composer 安装命令:

composer require pacerit/laravel-polish-validation-rules

包简介

Simple Polish Validation rules for Laravel and Lumen framework

README 文档

README

GitHub tag (latest by date) GitHub Packagist PHP from Packagist StyleCI <PacerIT>

Simple Polish Validation rules for Laravel and Lumen framework

Installation

You can install this package by composer:

composer require pacerit/laravel-polish-validation-rules

For customize validaiton messages run:

php artisan vendor:publish --provider "PacerIT\LaravelPolishValidationRules\Providers\LaravelPolishValidationRulesServiceProvider"

Version compatibility

Laravel/Lumen

Framework Package Note
5.8.x ^1.x.x No longer maintained.
6.0.x ^2.x.x No longer maintained.
7.x.x ^3.x.x No longer maintained.
8.x.x ^4.x.x PHP ^8.0 Supported from 4.0.3, Bug fixes only. No longer maintained.
9.x.x ^5.x.x No longer maintained.
10.x.x ^6.x.x No longer maintained.
11.x.x ^7.x.x No longer maintained.
12.x.x ^8.x.x
13.x.x ^9.x.x

Rules

  1. 'PESEL' - validate PESEL number. We can validate additional parameters:
    • Gender - check if gender value in PESEL
      • gender_male
      • gender_female
    • Birth date - checking if birth date decoded from PESEL number is before or after date defined in rules
      • born_before,Y-m-d - i.e. PESEL:born_before,2022-01-01
      • born_after,Y-m-d - i.e. PESEL:born_after,2000-01-01
  2. 'REGON' - validate REGON number
  3. 'NIP' - validate NIP number
  4. 'id_card_number' - validate Polish ID Card number
  5. 'post_code' - validate Polish post codes. By default accept codes in format 00-000 and 00000. You can change this with options:
    • with_dash - only post codes with format 00-000 are valid
    • without_dash - only post code with format 00000 are valid
  6. 'PWZ' - validate PWZ (Prawo wykonywania zawodu lekarza/farmaceuty) numer (more information HERE)
  7. 'passport_number' - validate Polish passport number

Usage example

Without optional parameters

$validator = Validator::make(
    $request->all(),
    [
        'post_code'  => 'post_code',
        'pesel'      => 'PESEL',
        'nip_number' => 'NIP',
    ]
);

With optional parameters

$validator = Validator::make(
    $request->all(),
    [
        'post_code' => 'post_code:without_dash',
        'pesel'     => 'PESEL:gender_female',
    ]
);

Multiple options

$validator = Validator::make(
    $request->all(),
    [
        'pesel' => 'PESEL:gender_male:born_before,2022-01-01:born_after,2000-01-01',
    ]
);

Code Authors

The algorithms used in the functions are based on existing solutions. Below are links to the sources:

Changelog

Go to the Changelog for a full change history of the package.

Testing

composer test

Security Vulnerabilities

If you discover a security vulnerability within package, please send an e-mail to Wiktor Pacer via kontakt@pacerit.pl. All security vulnerabilities will be promptly addressed.

License

This package is open-source software licensed under the MIT license.

pacerit/laravel-polish-validation-rules 适用场景与选型建议

pacerit/laravel-polish-validation-rules 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 53.48k 次下载、GitHub Stars 达 14, 最近一次更新时间为 2019 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「validation」 「laravel」 「pesel」 「regon」 「polish」 「pacerit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 pacerit/laravel-polish-validation-rules 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 pacerit/laravel-polish-validation-rules 我们能提供哪些服务?
定制开发 / 二次开发

基于 pacerit/laravel-polish-validation-rules 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 53.48k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 14
  • 点击次数: 24
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 14
  • Watchers: 1
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-08-12