-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
73 lines (73 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
65
66
67
68
69
70
71
72
73
{
"name": "advoor/nova-editor-js",
"description": "A Laravel Nova field bringing EditorJs magic to Nova.",
"license": "MIT",
"keywords": [
"laravel",
"nova",
"editor",
"editorjs",
"wysiwyg"
],
"require": {
"php": "^8.2",
"ext-exif": "*",
"ext-json": "*",
"codex-team/editor.js": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/events": "^10.0 || ^11.0",
"laravel/nova": "^4.0",
"spatie/image": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^8.0 || ^9.0",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload": {
"psr-4": {
"Advoor\\NovaEditorJs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"test": "phpunit",
"lint": [
"parallel-lint --exclude .git --exclude vendor ."
],
"format": [
"pint"
]
},
"scripts-descriptions": {
"test": "Test application using PHPUnit.",
"lint": "Lint all php files",
"format": "Run php-cs-fixer formatter"
},
"extra": {
"laravel": {
"providers": [
"Advoor\\NovaEditorJs\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}