├── LICENSE ├── appveyor.yml ├── composer.json └── src ├── AbstractConstraint.php ├── AbstractIsoCodesConstraintValidator.php ├── AbstractIsoCodesGenericConstraint.php ├── Bridge └── Symfony │ ├── Bundle │ └── SLLHIsoCodesValidatorBundle.php │ └── DependencyInjection │ └── Compiler │ └── TranslationPass.php ├── ConstraintInterface.php ├── Constraints ├── Bban.php ├── Cif.php ├── CreditCard.php ├── Ean13.php ├── Ean8.php ├── Iban.php ├── Insee.php ├── Ip.php ├── IpValidator.php ├── Isbn.php ├── IsbnValidator.php ├── IsoCodesGenericValidator.php ├── Mac.php ├── Nif.php ├── PhoneNumber.php ├── PhoneNumberValidator.php ├── Siren.php ├── Siret.php ├── Ssn.php ├── StructuredCommunication.php ├── SwiftBic.php ├── Uknin.php ├── Vat.php ├── ZipCode.php └── ZipCodeValidator.php ├── Exception └── ValidatorNotExistsException.php └── translations ├── validators.en.xlf └── validators.fr.xlf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/LICENSE -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/AbstractConstraint.php -------------------------------------------------------------------------------- /src/AbstractIsoCodesConstraintValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/AbstractIsoCodesConstraintValidator.php -------------------------------------------------------------------------------- /src/AbstractIsoCodesGenericConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/AbstractIsoCodesGenericConstraint.php -------------------------------------------------------------------------------- /src/Bridge/Symfony/Bundle/SLLHIsoCodesValidatorBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Bridge/Symfony/Bundle/SLLHIsoCodesValidatorBundle.php -------------------------------------------------------------------------------- /src/Bridge/Symfony/DependencyInjection/Compiler/TranslationPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Bridge/Symfony/DependencyInjection/Compiler/TranslationPass.php -------------------------------------------------------------------------------- /src/ConstraintInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/ConstraintInterface.php -------------------------------------------------------------------------------- /src/Constraints/Bban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Bban.php -------------------------------------------------------------------------------- /src/Constraints/Cif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Cif.php -------------------------------------------------------------------------------- /src/Constraints/CreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/CreditCard.php -------------------------------------------------------------------------------- /src/Constraints/Ean13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Ean13.php -------------------------------------------------------------------------------- /src/Constraints/Ean8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Ean8.php -------------------------------------------------------------------------------- /src/Constraints/Iban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Iban.php -------------------------------------------------------------------------------- /src/Constraints/Insee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Insee.php -------------------------------------------------------------------------------- /src/Constraints/Ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Ip.php -------------------------------------------------------------------------------- /src/Constraints/IpValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/IpValidator.php -------------------------------------------------------------------------------- /src/Constraints/Isbn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Isbn.php -------------------------------------------------------------------------------- /src/Constraints/IsbnValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/IsbnValidator.php -------------------------------------------------------------------------------- /src/Constraints/IsoCodesGenericValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/IsoCodesGenericValidator.php -------------------------------------------------------------------------------- /src/Constraints/Mac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Mac.php -------------------------------------------------------------------------------- /src/Constraints/Nif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Nif.php -------------------------------------------------------------------------------- /src/Constraints/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/PhoneNumber.php -------------------------------------------------------------------------------- /src/Constraints/PhoneNumberValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/PhoneNumberValidator.php -------------------------------------------------------------------------------- /src/Constraints/Siren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Siren.php -------------------------------------------------------------------------------- /src/Constraints/Siret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Siret.php -------------------------------------------------------------------------------- /src/Constraints/Ssn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Ssn.php -------------------------------------------------------------------------------- /src/Constraints/StructuredCommunication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/StructuredCommunication.php -------------------------------------------------------------------------------- /src/Constraints/SwiftBic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/SwiftBic.php -------------------------------------------------------------------------------- /src/Constraints/Uknin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Uknin.php -------------------------------------------------------------------------------- /src/Constraints/Vat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/Vat.php -------------------------------------------------------------------------------- /src/Constraints/ZipCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/ZipCode.php -------------------------------------------------------------------------------- /src/Constraints/ZipCodeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Constraints/ZipCodeValidator.php -------------------------------------------------------------------------------- /src/Exception/ValidatorNotExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/Exception/ValidatorNotExistsException.php -------------------------------------------------------------------------------- /src/translations/validators.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/translations/validators.en.xlf -------------------------------------------------------------------------------- /src/translations/validators.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soullivaneuh/IsoCodesValidator/HEAD/src/translations/validators.fr.xlf --------------------------------------------------------------------------------