forked from aryehraber/statamic-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 960 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
{
"name": "aryehraber/statamic-uuid",
"type": "statamic-addon",
"description": "One of its kind; unlike anything else",
"keywords": [
"statamic",
"fieldtype",
"uuid"
],
"homepage": "https://github.com/aryehraber/statamic-uuid",
"license": "MIT",
"require": {
"statamic/cms": "^3.0"
},
"autoload": {
"psr-4": {
"AryehRaber\\Uuid\\": "src"
}
},
"authors": [
{
"name": "Aryeh Raber",
"email": "aryeh.raber@gmail.com",
"homepage": "https://aryeh.dev",
"role": "Developer"
}
],
"extra": {
"statamic": {
"name": "Uuid",
"description": "One of its kind; unlike anything else",
"version": "2.0.3"
},
"laravel": {
"providers": [
"AryehRaber\\Uuid\\UuidServiceProvider"
]
}
}
}