-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
52 lines (52 loc) · 1.88 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "misd/phone-number-bundle",
"type": "symfony-bundle",
"abandoned": "odolbeau/phone-number-bundle",
"description": "Integrates libphonenumber into your Symfony2-Symfony4 application",
"keywords": ["bundle", "phone-number", "phonenumber", "telephone number", "libphonenumber"],
"homepage": "https://github.com/misd-service-development/phone-number-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/misd-service-development/phone-number-bundle/issues"
},
"require": {
"php": ">=5.3.9",
"giggsey/libphonenumber-for-php": "~5.7|~6.0|~7.0|~8.0",
"symfony/framework-bundle": "~2.7|~3.0|~4.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"jms/serializer-bundle": "~0.11|~1.0|~2.0",
"phpunit/phpunit": "~4.0|^5.7",
"symfony/form": "~2.7|~3.0|~4.0",
"symfony/serializer": "~2.7|~3.1|~4.0",
"symfony/templating": "~2.7|~3.0|~4.0",
"symfony/twig-bundle": "~2.7|~3.0|~4.0",
"symfony/validator": "~2.7|~3.0|~4.0"
},
"conflict": {
"twig/twig": "<1.12.0"
},
"suggest": {
"doctrine/doctrine-bundle": "Add a DBAL mapping type",
"jms/serializer-bundle": "Serialize/deserialize phone numbers using JSM library",
"symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
"symfony/form": "Add a data transformer",
"symfony/templating": "Format phone numbers in templates",
"symfony/twig-bundle": "Format phone numbers in Twig templates",
"symfony/validator": "Add a validation constraint"
},
"autoload": {
"psr-4": {
"Misd\\PhoneNumberBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}