patrickjunod / avs-checker
AVS Checker - A library for AVS / AHV Number validation
Fund package maintenance!
PatrickJunod
Requires
- php: ^8.0
Requires (Dev)
- nunomaduro/collision: ^5.3
- nunomaduro/larastan: ^0.7.12
- orchestra/testbench: ^6.15
- pestphp/pest: ^1.18
- pestphp/pest-plugin-laravel: ^1.1
- vimeo/psalm: ^4.8
README
This small library helps you to validate Swiss Social Security Numbers (AVS / AHV). It will check against regex and checksums to be sure that the number is valid.
Installation
You can install the package via composer:
composer require patrickjunod/avs-checker
Usage
You can use the AVS Checker as a standalone PHP Package:
use PatrickJunod\AvsChecker\AvsChecker; $avsNumber = new AvsChecker('756.3026.0705.92'); $avsNumber->isValid(); // Return true if it's a valid AVS Number, false if not
Facade
Or use it with a facade:
use PatrickJunod\AvsChecker\Facades\AvsChecker; $avsNumber = AvsChecker::isValid('756.3026.0705.92'); // Return true if it's a valid AVS Number, false if not
Validate without strict mode
You can also validate AVS numbers without dots separation by passing false parameter to the isValid method. This option will validate AVS numbers with AND without dots.
use PatrickJunod\AvsChecker\AvsChecker; $avsNumber = AvsChecker::isValid('7563026070592', false); // Return true
Validate an array of AVS Numbers
You can also validate an array of AVS numbers - with or without strict mode
use PatrickJunod\AvsChecker\AvsChecker; $avsNumber = AvsChecker::isValid(['7563026070592', '756.2036.0705.92', 'AAA'], false); // Return an array: [ 0 => [ "number" => "7563026070592", "isValid" => true ], 1 => [ "number" => "756.2036.0705.92", "isValid" => true ], 2 => [ "number" => "AAA", "isValid" => false ] ]
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.