-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
64 lines (64 loc) · 1.71 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
{
"name": "rahmanramsi/filament-editorjs",
"description": "Next generation block styled editor.",
"keywords": [
"rahmanramsi",
"laravel",
"filament-editorjs"
],
"homepage": "https://github.com/rahmanramsi/filament-editorjs",
"license": "MIT",
"authors": [
{
"name": "Rahman Ramsi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spatie/laravel-package-tools": "^1.16",
"illuminate/contracts": "^10.0",
"filament/forms": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22",
"nunomaduro/collision": "^7.8",
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.13",
"pestphp/pest-plugin-laravel": "^2.1",
"phpunit/phpunit": "^10.3"
},
"autoload": {
"psr-4": {
"FilamentEditorJs\\": "src",
"FilamentEditorJs\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"FilamentEditorJs\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"FilamentEditorJs\\FilamentEditorJsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}