forked from ElfSundae/laravel-hashid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "elfsundae/laravel-hashid",
"description": "A simple, elegant way to obfuscate your data by generating reversible, non-sequential, URL-safe identifiers.",
"license": "MIT",
"type": "library",
"keywords": [
"hashid",
"obfuscate",
"base62",
"base64",
"hashids",
"optimus",
"URL safe"
],
"homepage": "https://github.com/ElfSundae/laravel-hashid",
"authors": [
{
"name": "Elf Sundae",
"email": "[email protected]",
"homepage": "https://0x123.com"
}
],
"require": {
"php": "^7.1|^8.0",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"tuupola/base62": "^2.0",
"elfsundae/urlsafe-base64": "^1.1",
"hashids/hashids": "^2.0.4|^3.0|^4.0|^5.0",
"jenssegers/optimus": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0|^9.0",
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0"
},
"suggest": {
"elfsundae/laravel-hashid-uuid": "Shorten UUID encoding"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ElfSundae\\Laravel\\Hashid\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"ElfSundae\\Laravel\\Hashid\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.7-dev"
},
"laravel": {
"providers": [
"ElfSundae\\Laravel\\Hashid\\HashidServiceProvider"
],
"aliases": {
"Hashid": "ElfSundae\\Laravel\\Hashid\\Facades\\Hashid"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}