forked from misd-service-development/phone-number-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.71 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
53
{
"name": "misd/phone-number-bundle",
"type": "symfony-bundle",
"description": "Integrates libphonenumber into your Symfony2 application",
"keywords": ["bundle", "phone-number", "phonenumber", "telephone number", "libphonenumber"],
"homepage": "https://github.com/misd-service-development/phone-number-bundle",
"license": "MIT",
"authors": [
{
"name": "Chris Wilkinson",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/misd-service-development/phone-number-bundle/issues"
},
"require": {
"php": ">=5.3.3",
"giggsey/libphonenumber-for-php": "~5.7|~6.0|~7.0",
"symfony/framework-bundle": "~2.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"jms/serializer-bundle": "~0.11",
"phpunit/phpunit": "~4.0",
"symfony/form": "~2.3",
"symfony/templating": "~2.1",
"symfony/twig-bundle": "~2.1",
"symfony/validator": "~2.1"
},
"conflict": {
"twig/twig": "<1.12.0"
},
"suggest": {
"doctrine/doctrine-bundle": "Add a DBAL mapping type",
"jms/serializer-bundle": "Serialize/deserialize phone numbers",
"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"
},
"minimum-stability": "alpha",
"autoload": {
"psr-4": {
"Misd\\PhoneNumberBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}