-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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
{
"name": "trickeyone/intl-subdivision",
"description": "A PHP Intl library to retrieve states for a given country.",
"type": "library",
"license": "MIT",
"version": "4.0.0",
"authors": [
{
"name": "Josh England",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"process-timeout": 0,
"lock": false
},
"require": {
"php": "^7.1 || ^8.0",
"symfony/intl": "^4.1 || ^5.0 || ^6.0"
},
"require-dev": {
"ext-json": "*",
"ext-xdebug": "*",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"sokil/php-isocodes": "^3.3 || ^4.0",
"sokil/php-isocodes-db-i18n": "^4.0"
},
"suggest": {
"ext-intl": "to use the component with locales other than \"en\""
},
"autoload": {
"psr-4": {
"Symfony\\Component\\IntlSubdivision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Component\\IntlSubdivision\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}