-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.3 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
{
"name": "netsells/hash-model-ids",
"description": "Dynamically create a hash of an Eloquent model id value to avoid exposing a record's actual database id.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"netsells",
"eloquent",
"ids",
"hashids",
"dynamic"
],
"authors": [
{
"name": "Tom Moore",
"email": "[email protected]"
},
{
"name": "Sam Jordan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"hashids/hashids": "^5.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/validation": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Netsells\\HashModelIds\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Netsells\\HashModelIds\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Netsells\\HashModelIds\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}