forked from misd-service-development/phone-number-bundle
-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
58 lines (58 loc) · 2 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
{
"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": ">=8.1",
"giggsey/libphonenumber-for-php": "^8.9",
"symfony/framework-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/intl": "^5.4 || ^6.3 || ^7.0",
"symfony/polyfill-mbstring": "^1.28"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12|^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.6.11",
"symfony/form": "^5.4 || ^6.3 || ^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/property-access": "^5.4 || ^6.3 || ^7.0",
"symfony/serializer": "^5.4 || ^6.3 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/validator": "^5.4 || ^6.3 || ^7.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.10.x-dev"
}
}
}