forked from odolbeau/phone-number-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.93 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
54
55
56
57
58
59
{
"name": "odolbeau/phone-number-bundle",
"type": "symfony-bundle",
"description": "Integrates libphonenumber into your Symfony application",
"keywords": ["bundle", "phone-number", "phonenumber", "telephone number", "libphonenumber"],
"homepage": "https://github.com/odolbeau/phone-number-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/odolbeau/phone-number-bundle/issues"
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.4",
"giggsey/libphonenumber-for-php": "^8.0",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"symfony/intl": "^4.4|^5.3|^6.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12|^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/form": "^4.4|^5.3|^6.0",
"symfony/property-access": "^4.4|^5.3|^6.0",
"symfony/serializer": "^4.4|^5.3|^6.0.1",
"symfony/twig-bundle": "^4.4|^5.3|^6.0",
"symfony/validator": "^4.4|^5.3|^6.0"
},
"suggest": {
"doctrine/doctrine-bundle": "Add a DBAL mapping type",
"symfony/form": "Add a data transformer",
"symfony/property-access": "Choose a path in the validation constraint",
"symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
"symfony/twig-bundle": "Format phone numbers in Twig templates",
"symfony/validator": "Add a validation constraint"
},
"replace": {
"misd/phone-number-bundle": "self.version"
},
"autoload": {
"psr-4": {
"Misd\\PhoneNumberBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Misd\\PhoneNumberBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.6.x-dev"
}
},
"conflict": {
"symfony/serializer": "6.0.0"
}
}