-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "canyongbs/filament-tiptap-editor",
"type": "package",
"description": "A Tiptap integration for Filament Admin/Forms.",
"keywords": [
"framework",
"laravel",
"filament",
"tiptap",
"wysiwyg",
"editor"
],
"license": "MIT",
"authors": [
{
"name": "Adam Weston",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"spatie/laravel-package-tools": "^1.9.2",
"ueberdosis/tiptap-php": "^1.1"
},
"require-dev": {
"awcodes/html-faker": "^0.1.0",
"filament/filament": "^3.0",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.19",
"pestphp/pest-plugin-laravel": "^2.2",
"pestphp/pest-plugin-livewire": "^2.1",
"spatie/laravel-medialibrary": "^11.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"FilamentTiptapEditor\\": "src/",
"FilamentTiptapEditor\\Tests\\": "tests/src",
"FilamentTiptapEditor\\Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"extra": {
"laravel": {
"providers": [
"FilamentTiptapEditor\\FilamentTiptapEditorServiceProvider"
]
},
"aliases": {
"TiptapConverter": "FilamentTiptapEditor\\Facades\\TiptapConverter"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}