-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 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
{
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Verbanent\\Uuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Verbanent\\Uuid\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Verbanent\\Uuid\\Providers\\BinaryUuidServiceProvider"
]
}
},
"homepage": "https://github.com/verbanent/eloquent-binary-uuid",
"keywords": [
"binary",
"eloquent",
"hex",
"laravel",
"ordered",
"uuid"
],
"license": "MIT",
"name": "verbanent/eloquent-binary-uuid",
"description": "Ordered binary UUID in Laravel / Eloquent based on UUID version 1",
"require": {
"php": "^7.3|^8",
"ramsey/uuid": "^3.8|^4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"laravel/framework": "^6.20.26|^7|^8|^9|^10",
"mockery/mockery": "^1"
},
"type": "library"
}