forked from misd-service-development/phone-number-bundle
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.14 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 2.14 KB
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
60
61
{
"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": "^9.0.2",
"symfony/config": "^6.4 || ^7.2 || ^8.0",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/framework-bundle": "^6.4 || ^7.2 || ^8.0",
"symfony/intl": "^6.4 || ^7.2 || ^8.0",
"symfony/polyfill-mbstring": "^1.28"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12|^2.0",
"phpspec/prophecy-phpunit": "^2.3",
"phpspec/prophecy": "^1.20",
"phpunit/phpunit": "^9.6.11",
"symfony/form": "^6.4 || ^7.2 || ^8.0",
"symfony/phpunit-bridge": "^7.2 || ^8.0",
"symfony/property-access": "^6.4 || ^7.2 || ^8.0",
"symfony/serializer": "^6.4 || ^7.2 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.2 || ^8.0",
"symfony/validator": "^6.4 || ^7.2 || ^8.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"
}
}
}