├── LICENSE ├── README.md ├── composer.json └── src ├── DependencyInjection ├── Compiler │ └── FormTwigTemplateCompilerPass.php ├── Configuration.php └── MisdPhoneNumberExtension.php ├── Doctrine └── DBAL │ └── Types │ └── PhoneNumberType.php ├── Exception └── InvalidArgumentException.php ├── Form ├── DataTransformer │ ├── PhoneNumberToArrayTransformer.php │ └── PhoneNumberToStringTransformer.php ├── Extension │ └── PhoneNumberTypeEqualityExtension.php └── Type │ └── PhoneNumberType.php ├── MisdPhoneNumberBundle.php ├── Resources ├── config │ ├── form.php │ ├── serializer.php │ ├── services.php │ ├── twig.php │ └── validator.php ├── meta │ └── LICENSE ├── translations │ ├── validators.ar.xlf │ ├── validators.bs.xlf │ ├── validators.bs_Cyrl.xlf │ ├── validators.ca.xlf │ ├── validators.cs.xlf │ ├── validators.de.xlf │ ├── validators.dk.xlf │ ├── validators.en.xlf │ ├── validators.en_AU.xlf │ ├── validators.en_CA.xlf │ ├── validators.en_GB.xlf │ ├── validators.en_IE.xlf │ ├── validators.en_NZ.xlf │ ├── validators.en_PH.xlf │ ├── validators.en_SG.xlf │ ├── validators.en_US.xlf │ ├── validators.en_ZA.xlf │ ├── validators.es.xlf │ ├── validators.es_419.xlf │ ├── validators.fi.xlf │ ├── validators.fr.xlf │ ├── validators.hr.xlf │ ├── validators.hu.xlf │ ├── validators.it.xlf │ ├── validators.nl.xlf │ ├── validators.pl.xlf │ ├── validators.pt.xlf │ ├── validators.pt_BR.xlf │ ├── validators.ru.xlf │ ├── validators.se.xlf │ ├── validators.sk.xlf │ ├── validators.sr.xlf │ ├── validators.sr_Latn.xlf │ ├── validators.sv.xlf │ ├── validators.tr.xlf │ └── validators.uk.xlf └── views │ └── Form │ ├── phone_number.html.twig │ ├── phone_number_bootstrap.html.twig │ ├── phone_number_bootstrap_4.html.twig │ └── phone_number_bootstrap_5.html.twig ├── Serializer └── Normalizer │ └── PhoneNumberNormalizer.php ├── Templating └── Helper │ └── PhoneNumberHelper.php ├── Twig └── Extension │ └── PhoneNumberHelperExtension.php └── Validator └── Constraints ├── PhoneNumber.php └── PhoneNumberValidator.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/FormTwigTemplateCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/DependencyInjection/Compiler/FormTwigTemplateCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/MisdPhoneNumberExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/DependencyInjection/MisdPhoneNumberExtension.php -------------------------------------------------------------------------------- /src/Doctrine/DBAL/Types/PhoneNumberType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Doctrine/DBAL/Types/PhoneNumberType.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Form/DataTransformer/PhoneNumberToArrayTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Form/DataTransformer/PhoneNumberToArrayTransformer.php -------------------------------------------------------------------------------- /src/Form/DataTransformer/PhoneNumberToStringTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Form/DataTransformer/PhoneNumberToStringTransformer.php -------------------------------------------------------------------------------- /src/Form/Extension/PhoneNumberTypeEqualityExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Form/Extension/PhoneNumberTypeEqualityExtension.php -------------------------------------------------------------------------------- /src/Form/Type/PhoneNumberType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Form/Type/PhoneNumberType.php -------------------------------------------------------------------------------- /src/MisdPhoneNumberBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/MisdPhoneNumberBundle.php -------------------------------------------------------------------------------- /src/Resources/config/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/config/form.php -------------------------------------------------------------------------------- /src/Resources/config/serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/config/serializer.php -------------------------------------------------------------------------------- /src/Resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/config/services.php -------------------------------------------------------------------------------- /src/Resources/config/twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/config/twig.php -------------------------------------------------------------------------------- /src/Resources/config/validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/config/validator.php -------------------------------------------------------------------------------- /src/Resources/meta/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Resources/translations/validators.ar.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.ar.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.bs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.bs.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.bs_Cyrl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.bs_Cyrl.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.ca.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.ca.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.cs.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.de.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.dk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.dk.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_AU.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_AU.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_CA.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_CA.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_GB.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_GB.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_IE.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_IE.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_NZ.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_NZ.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_PH.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_PH.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_SG.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_SG.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_US.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_US.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.en_ZA.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.en_ZA.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.es.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.es_419.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.es_419.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.fi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.fi.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.fr.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.hr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.hr.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.hu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.hu.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.it.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.nl.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.pl.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.pt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.pt.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.pt_BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.pt_BR.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.ru.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.se.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.se.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.sk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.sk.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.sr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.sr.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.sr_Latn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.sr_Latn.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.sv.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.sv.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.tr.xlf -------------------------------------------------------------------------------- /src/Resources/translations/validators.uk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/translations/validators.uk.xlf -------------------------------------------------------------------------------- /src/Resources/views/Form/phone_number.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/views/Form/phone_number.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Form/phone_number_bootstrap.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/views/Form/phone_number_bootstrap.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Form/phone_number_bootstrap_4.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/views/Form/phone_number_bootstrap_4.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Form/phone_number_bootstrap_5.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Resources/views/Form/phone_number_bootstrap_5.html.twig -------------------------------------------------------------------------------- /src/Serializer/Normalizer/PhoneNumberNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Serializer/Normalizer/PhoneNumberNormalizer.php -------------------------------------------------------------------------------- /src/Templating/Helper/PhoneNumberHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Templating/Helper/PhoneNumberHelper.php -------------------------------------------------------------------------------- /src/Twig/Extension/PhoneNumberHelperExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Twig/Extension/PhoneNumberHelperExtension.php -------------------------------------------------------------------------------- /src/Validator/Constraints/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Validator/Constraints/PhoneNumber.php -------------------------------------------------------------------------------- /src/Validator/Constraints/PhoneNumberValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odolbeau/phone-number-bundle/HEAD/src/Validator/Constraints/PhoneNumberValidator.php --------------------------------------------------------------------------------