-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "norman-huth/nova-bbcode-textarea",
"description": "Laravel Nova Textarea and Text field with BBCodes",
"keywords": [
"laravel",
"nova"
],
"support": {
"issues": "https://github.com/Muetze42/nova-bbcode-textarea/issues",
"source": "https://github.com/Muetze42/nova-bbcode-textarea",
"docs": "https://github.com/Muetze42/nova-bbcode-textarea#readme"
},
"homepage": "https://github.com/Muetze42/nova-bbcode-textarea",
"authors": [
{
"name": "Norman Huth",
"homepage": "https://huth.it"
}
],
"license": "MIT",
"require": {
"php": "^8.0",
"laravel/nova": "^4.0.0"
},
"autoload": {
"psr-4": {
"NormanHuth\\BBCode\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"NormanHuth\\BBCode\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}