forked from webpatser/laravel-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 956 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
36
37
38
39
40
41
42
{
"name" : "webpatser/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/uuid",
"license" : [
"MIT"
],
"require" : {
"php" : "^7.0"
},
"require-dev" : {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~6.0"
},
"autoload" : {
"psr-0" : {
"Webpatser\\Uuid" : "src/"
}
},
"support" : {
"source" : "https://github.com/webpatser/uuid",
"issues" : "https://github.com/webpatser/uuid/issues"
},
"extra": {
"laravel": {
"providers": [
"Webpatser\\Uuid\\UuidServiceProvider"
],
"aliases": {
"Uuid": "Webpatser\\Uuid\\Uuid"
}
}
}
}