-
Notifications
You must be signed in to change notification settings - Fork 151
/
composer.json
47 lines (47 loc) · 1.05 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
{
"name" : "webpatser/laravel-uuid",
"description" : "Laravel package to generate and to validate a universally unique identifier (UUID) according to the RFC 4122 standard. Support for version 1, 3, 4 and 5 UUIDs are built-in.",
"authors" : [{
"name" : "Christoph Kempen",
"email" : "christoph@downsized.nl"
}
],
"keywords" : [
"UUID RFC4122"
],
"homepage" : "https://github.com/webpatser/laravel-uuid",
"license" : [
"MIT"
],
"require" : {
"php" : "^7.0|^8.0"
},
"require-dev" : {
"fakerphp/faker": "^1.9.1",
"phpunit/phpunit": "^9.3.3"
},
"autoload" : {
"psr-4" : {
"Webpatser\\Uuid\\": "src/Webpatser/Uuid/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"support" : {
"source" : "https://github.com/webpatser/laravel-uuid",
"issues" : "https://github.com/webpatser/laravel-uuid/issues"
},
"extra": {
"laravel": {
"providers": [
"Webpatser\\Uuid\\UuidServiceProvider"
],
"aliases": {
"Uuid": "Webpatser\\Uuid\\Uuid"
}
}
}
}