-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
33 lines (33 loc) · 867 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
{
"name": "takashiki/ourls",
"description": "A url shorten service system base on hash id",
"keywords": ["url shorten", "hashids"],
"homepage": "https://github.com/takashiki/ourls",
"license": "MIT",
"authors": [
{
"name": "takashiki",
"email": "[email protected]",
"homepage": "http://blog.skyx.in/"
}
],
"require": {
"php": ">=5.6.4",
"catfan/medoo": "^0.9.8",
"etechnika/idna-convert": "^1.1",
"glenscott/url-normalizer": "*",
"hashids/hashids": "^2.0",
"mikecao/flight": "^1.2",
"wikimedia/ip-set": "1.1.0"
},
"autoload": {
"psr-4": {
"app\\": "app/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}