forked from diarmuidie/NiceID
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 808 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 808 Bytes
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
{
"name": "diarmuidie/niceid",
"description": "PHP library to generate short, non-sequential, URL-friendly hashes of incremental IDs. Similar to YouTube (https://www.youtube.com/watch?v=dQw4w9WgXcQ) and Bitly (http://bit.ly/1D0CAzd) URLs.",
"keywords": ["id", "url friendly", "hash", "obfuscate"],
"license": "MIT",
"homepage": "http://github.com/diarmuidie/niceid",
"authors": [
{
"name": "Diarmuid",
"homepage": "http://diarmuid.ie"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "^4.5",
"squizlabs/php_codesniffer": "^2.0",
"codeclimate/php-test-reporter": "^0.1"
},
"autoload": {
"psr-4": {
"Diarmuidie\\NiceID\\": "src"
}
}
}