-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
47 lines (47 loc) · 1.26 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": "gldrenthe89/nova-string-generator-field",
"description": "A Laravel Nova field for generating a random string. This can be used for a Text field and for a Password field.",
"keywords": [
"laravel",
"nova",
"password"
],
"homepage": "https://github.com/gldrenthe89/nova-string-generator-field",
"license": "MIT",
"authors": [
{
"name": "Geert Lucas Drenthe",
"email": "[email protected]",
"homepage": "https://github.com/gldrenthe89",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"laravel/nova": "~4.0|~5.0",
"illuminate/support": "^10.0|^11.0",
"outl1ne/nova-translations-loader": "^5.0"
},
"autoload": {
"psr-4": {
"Gldrenthe89\\NovaStringGeneratorField\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Gldrenthe89\\NovaStringGeneratorField\\NovaStringGeneratorFieldServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}