-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
41 lines (41 loc) · 1018 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
{
"name": "recca0120/twzipcode",
"description": "twzipcode",
"keywords": ["twzipcode"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=5.5.9",
"ext-zlib": "*",
"recca0120/lodash": "^1.1"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "~0.9.4|~1.0",
"phpunit/phpunit": "~4.8|~5.4|~6.3|~7.0|~8.0|~9.0",
"nesbot/carbon": "~1.20|~2.0"
},
"autoload": {
"psr-4": {
"Recca0120\\Twzipcode\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\Twzipcode\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"zipcode": "php ./resources/converter.php"
}
}