Releases: pixelpeter/laravel5-isocodes-validation
Releases · pixelpeter/laravel5-isocodes-validation
v3.0.0
- Fix issue #8: missing function replaceVat
- Laravel 5.8
- Upgrade to phpunit 7.5.x
- Add php 7.3 to travis-ci
- Add support for arrays with dot notations to all validation methods
$payload = [ 'data' => [ [ 'country' => 'DE', 'zipcode' => 63741 ], [ 'country' => 'AT', 'zipcode' => 1180 ] ] ]; $validator = Validator::make($payload, [ 'data.*.zipcode' => 'zipcode:data.*.country' ]);
- Refactor: fix scrutinizer issues
- Refactor: add (external) fixtures to tests to reduce number of lines
- Refactor: remove unused function params
v2.0.1
v2.0.0
- Laravel 5.5 compatibility with Auto-Discovery
- Require php 7.0+
- Upgrade to phpunit 6.5.x
- Add php 7.2 to travis-ci
v1.2.0
Added support for following validation rules
- BSN
- GDTI
- GLN
- GRAI
- GSRN
- ISMN
- ISWC
- UDI
- UPCA
v1.1.0
- Laravel 5.4 compatibility
v1.0
Stable first release