Add doctrine phone_number type.

This commit is contained in:
Pol Dellaiera 2022-02-22 13:11:56 +01:00
parent 7ad78fbce1
commit 47676c67ff
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,7 @@ use Chill\MainBundle\Form\LocationTypeType;
use Chill\MainBundle\Form\UserJobType; use Chill\MainBundle\Form\UserJobType;
use Chill\MainBundle\Form\UserType; use Chill\MainBundle\Form\UserType;
use Exception; use Exception;
use Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType;
use Ramsey\Uuid\Doctrine\UuidType; use Ramsey\Uuid\Doctrine\UuidType;
use Symfony\Component\Config\FileLocator; use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
@ -235,6 +236,7 @@ class ChillMainExtension extends Extension implements
'dateinterval' => NativeDateIntervalType::class, 'dateinterval' => NativeDateIntervalType::class,
'point' => PointType::class, 'point' => PointType::class,
'uuid' => UuidType::class, 'uuid' => UuidType::class,
'phone_number' => PhoneNumberType::class,
], ],
], ],
] ]

View File

@ -26,7 +26,8 @@
], ],
"require": { "require": {
"league/csv": "^9.6", "league/csv": "^9.6",
"phpoffice/phpspreadsheet": "~1.2" "phpoffice/phpspreadsheet": "~1.2",
"odolbeau/phone-number-bundle": "^3.6"
}, },
"require-dev": { "require-dev": {
}, },