-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.23 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.23 KB
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
71
72
73
74
75
76
{
"name": "spatie/filament-markdown-editor",
"description": "A markdown editor for Filament with code highlighting and image uploads",
"keywords": [
"spatie",
"laravel",
"filament-markdown-editor"
],
"homepage": "https://github.com/spatie/filament-markdown-editor",
"license": "MIT",
"authors": [
{
"name": "Rias Van der Veken",
"email": "rias@spatie.be",
"role": "Developer"
},
{
"name": "Dan Harrin",
"email": "dan@danharrin.com",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
"spatie/laravel-package-tools": "^1.13.6"
},
"require-dev": {
"laravel/pint": "^1.2",
"nunomaduro/collision": "^6.3.1|^8.0",
"orchestra/testbench": "^7.10.1|^8.0|^9.0|^10.0",
"pestphp/pest": "^1.22.1|^2.34|^3.7",
"pestphp/pest-plugin-laravel": "^1.3|^2.3|^3.1",
"phpunit/phpunit": "^9.5.25|^10.5|^11.5.3"
},
"autoload": {
"psr-4": {
"Spatie\\FilamentMarkdownEditor\\": "src",
"Spatie\\FilamentMarkdownEditor\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\FilamentMarkdownEditor\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\FilamentMarkdownEditor\\MarkdownEditorServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}