forked from vinkla/hashids
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.16 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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": "hashids/hashids",
"description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
"keywords": ["hashids", "hashid", "hash", "ids", "youtube", "bitly", "encode", "decode", "obfuscate"],
"homepage": "http://hashids.org/php",
"license": "MIT",
"authors": [
{
"name": "Ivan Akimov",
"email": "ivan@barreleye.com",
"homepage": "https://twitter.com/IvanAkimov"
},
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^5.6.4 || ^7.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0"
},
"autoload": {
"psr-4": {
"Hashids\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hashids\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}