-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 1.07 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
{
"name": "tigrov/yii2-country",
"description": "Country data for Yii2 using Intl extension and more.",
"keywords": ["continent", "region", "country", "timezone", "currency", "language", "locale", "time zone", "measurement", "intl", "i18n", "l10n", "internationalization", "localization", "yii2"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"source": "https://github.com/tigrov/yii2-country"
},
"authors": [
{
"name": "Sergei Tigrov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "~2.0.13",
"tigrov/intldata": "~1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"suggest": {
"rinvex/countries": "Allows access to additional data of countries. For PHP >=7.0 only."
},
"autoload": {
"psr-4": {
"tigrov\\country\\": "src/"
}
},
"extra": {
"bootstrap": "tigrov\\country\\Bootstrap"
}
}