forked from umpirsky/country-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 919 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
{
"name": "umpirsky/country-list",
"type": "library",
"description": "List of all countries with names and ISO 3166-1 codes in all languages and data formats.",
"license": "MIT",
"authors": [
{
"name": "Saša Stamenković",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0"
},
"require-dev": {
"umpirsky/list-generator": "^1.2",
"slowprog/composer-copy-file": "^0.2",
"symfony/intl": "^4.2"
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
},
"extra": {
"copy-file": {
"vendor/umpirsky/list-generator/Dockerfile": "./",
"vendor/umpirsky/list-generator/docker-compose.yml": "./"
}
}
}