rooberthh/identity
Composer 安装命令:
composer require rooberthh/identity
包简介
A Laravel package to identify and validate Swedish personal numbers (personnummer) and organization numbers (organisationsnummer).
README 文档
README
A PHP package to validate and identify Swedish personal numbers (personnummer) and organization numbers (organisationsnummer).
Usage
Auto-detect identity type
use Rooberthh\Identity\Identity; $identity = Identity::identify('770604-0016'); // Returns PersonalNumber instance $identity = Identity::identify('556074-7569'); // Returns OrganizationNumber instance
Safe identification (no exceptions)
$identity = Identity::tryIdentify('invalid-number'); // Returns null instead of throwing exception if ($identity = Identity::tryIdentify($input)) { // Valid identity }
Personal number validation
use Rooberthh\Identity\PersonalNumber; // Validate without creating object if (PersonalNumber::isValid('770604-0016')) { // Valid personal number } // Create instance (throws exception if invalid) $person = new PersonalNumber('770604-0016');
Personal number formatting
$person = new PersonalNumber('7706040016'); $person->shortFormat(); // "7706040016" $person->shortFormat(true); // "770604-0016" $person->longFormat(); // "197706040016" $person->longFormat(true); // "19770604-0016"
Extract metadata from personal number
$person = new PersonalNumber('770604-0016'); $person->getBirthDate(); // DateTimeImmutable: 1977-06-04 $person->getAge(); // int (calculated from today) $person->getGender(); // Gender::Male $person->isMale(); // true $person->isFemale(); // false $person->isOfAge(18); // true
Centenarians (100+ years old)
// The + separator indicates a person born 100+ years ago $person = new PersonalNumber('770604+0016'); $person->isCentenarian(); // true $person->getBirthDate(); // DateTimeImmutable: 1877-06-04 $person->shortFormat(true); // "770604+0016"
Coordination numbers (samordningsnummer)
// Coordination numbers have day + 60 $person = new PersonalNumber('770664-0005'); $person->isCoordinationNumber(); // true $person->getBirthDate(); // DateTimeImmutable: 1977-06-04
Organization number validation
use Rooberthh\Identity\OrganizationNumber; if (OrganizationNumber::isValid('556074-7569')) { // Valid organization number } $org = new OrganizationNumber('5560747569'); $org->shortFormat(true); // "556074-7569"
Error handling
use Rooberthh\Identity\Exceptions\IdentityException; try { $person = new PersonalNumber('invalid'); } catch (IdentityException $e) { // "'invalid' is not valid personal number." }
Laravel Usage
Validation Rules
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Rooberthh\Identity\Rules\PersonalNumberRule; use Rooberthh\Identity\Rules\OrganizationNumberRule; use Rooberthh\Identity\Rules\IdentityRule; class StoreCustomerRequest extends FormRequest { public function rules(): array { return [ // Validate personal number only 'personal_number' => ['required', new PersonalNumberRule], // Validate organization number only 'organization_number' => ['required', new OrganizationNumberRule], // Validate either type (personal or organization) 'identity_number' => ['required', new IdentityRule], ]; } }
Model Casts
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Rooberthh\Identity\Casts\PersonalNumberCast; use Rooberthh\Identity\Casts\OrganizationNumberCast; use Rooberthh\Identity\Casts\IdentityCast; class Customer extends Model { protected function casts(): array { return [ 'personal_number' => PersonalNumberCast::class, 'organization_number' => OrganizationNumberCast::class, 'identity_number' => IdentityCast::class, // Auto-detects type ]; } }
Usage with Casted Attributes
$customer = Customer::find(1); // Personal number - returns PersonalNumber object $customer->personal_number->shortFormat(true); // "770604-0016" $customer->personal_number->longFormat(); // "197706040016" $customer->personal_number->getBirthDate(); // DateTimeImmutable $customer->personal_number->getAge(); // 48 $customer->personal_number->getGender(); // Gender::Male $customer->personal_number->isMale(); // true // Organization number - returns OrganizationNumber object $customer->organization_number->shortFormat(true); // "556074-7569" // Identity cast - auto-detects and returns appropriate type if ($customer->identity_number instanceof PersonalNumber) { echo $customer->identity_number->getAge(); } // Setting values - accepts string or object $customer->personal_number = '770604-0016'; $customer->personal_number = new PersonalNumber('770604-0016'); $customer->save(); // Stored as "197706040016" (long format)
rooberthh/identity 适用场景与选型建议
rooberthh/identity 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「laravel」 「Swedish」 「Personnummer」 「Organisationsnummer」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rooberthh/identity 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rooberthh/identity 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rooberthh/identity 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Validate Swedish social security numbers
Validate Swedish Organisationsnummer
A Symfony2 Bundle to slugify swedish texts
Validate personal identity numbers
Swedish language extension for flarum.
Rounding prices in Magento 2
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 34
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-11