-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 loc) · 1.15 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "base62/base62",
"description": "base62 encoder and decoder also for big numbers with Laravel integration",
"keywords": [
"base62",
"Laravel",
"encoder",
"decoder",
"url",
"string",
"BigInteger"
],
"type": "library",
"version": "3.1.1",
"license": "MIT",
"authors": [
{
"name": "Siro Diaz Palazon",
"email": "siro_diaz@yahoo.com"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "3.*",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"Base62\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Base62\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Base62\\Base62ServiceProvider"
]
}
},
"suggest": {
"ext-gmp": "This extension enables faster big integer encoding and decoding.",
"ext-bcmath": "This extension enables arbitrary precision calculation encoding and decoding."
},
"support": {
"issues": "https://github.com/SiroDiaz/Base62/issues",
"source": "https://github.com/SiroDiaz/Base62"
},
"scripts": {
"test": "phpunit"
}
}