forked from vinkla/laravel-hashids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.4 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
{
"name": "vinkla/hashids",
"description": "A Hashids bridge for Laravel",
"license": "MIT",
"keywords": ["laravel", "hashids", "hashid", "hash", "ids", "youtube", "bitly", "encrypt", "decrypt", "obfuscate"],
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^7.1.3",
"graham-campbell/manager": "^4.0",
"hashids/hashids": "^3.0",
"illuminate/contracts": "5.6.*",
"illuminate/support": "5.6.*"
},
"require-dev": {
"graham-campbell/analyzer": "^2.0",
"graham-campbell/testbench": "^5.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Vinkla\\Hashids\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\Hashids\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
},
"laravel": {
"providers": [
"Vinkla\\Hashids\\HashidsServiceProvider"
],
"aliases": {
"Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}