-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
29 lines (29 loc) · 912 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
{
"name" : "ajaxray/short-code",
"description" : "ShortCode generator for PHP. Create short, reversible or random, hash like codes.",
"minimum-stability": "dev",
"license" : "MIT",
"keywords" : ["hash", "code", "random", "short-code", "convert", "revert", "psr-3"],
"homepage" : "http://github.com/ajaxray/short-code",
"type" : "library",
"authors" : [
{
"name" : "Anis Uddin Ahmad",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"ext-bcmath": "*"
},
"autoload": {
"psr-4": {"ShortCode\\": "src/ShortCode"}
},
"autoload-dev": {
"psr-4": {"ShortCode\\": "tests/ShortCode"}
},
"require-dev": {
"satooshi/php-coveralls": "^1.1",
"phpunit/phpunit": "^4.8|^5.5|^6.5"
}
}