forked from m-adamski/symfony-phone-number-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "m-adamski/symfony-phone-number-bundle",
"description": "Bundle for Symfony which integrates with the libphonenumber library",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Maciej Adamski",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"giggsey/libphonenumber-for-php": "^8.11",
"symfony/form": "^4.1|^5.0",
"symfony/framework-bundle": "^4.1|^5.0",
"symfony/orm-pack": "^1.0",
"symfony/twig-bundle": "^4.1|^5.0",
"symfony/validator": "^4.1|^5.0"
},
"require-dev": {
"kint-php/kint": "^3.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Adamski\\Symfony\\PhoneNumberBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adamski\\Symfony\\PhoneNumberBundleTests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}