-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
composer.json
46 lines (46 loc) · 854 Bytes
/
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
{
"name": "mledoze/countries",
"description": "List of world countries in JSON, CSV, XML and Yaml",
"keywords": [
"world",
"countries",
"json",
"csv",
"xml",
"yaml"
],
"homepage": "https://mledoze.github.io/countries/",
"license": "ODbL-1.0",
"authors": [
{
"name": "Mohammed Le Doze"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mledoze/countries"
}
],
"require": {
"ext-dom": "*",
"ext-gettext": "*",
"php": ">=8.2",
"symfony/console": "~5.4|~6.4|~7.0",
"symfony/yaml": "~5.4|~6.4|~7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"MLD\\": "src/MLD"
}
},
"bin": [
"countries.php"
],
"scripts": {
"convert": "@php countries.php convert"
}
}