forked from matt-daneshvar/eloquent-hashids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 923 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
30
31
32
33
34
35
{
"name": "matt-daneshvar/eloquent-hashids",
"description": "Automatically generate and persist Hashids for newly created Eloquent models.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matt Daneshvar",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^7.4|^8.0",
"hashids/hashids": "^4.0"
},
"autoload": {
"psr-4": {
"MattDaneshvar\\EloquentHashids\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"mockery/mockery": "^1.3.2|^1.4"
},
"autoload-dev": {
"psr-4": {
"MattDaneshvar\\EloquentHashids\\Tests\\": "tests/"
},
"files": [
"tests/utilities/TestModel.php"
]
}
}