This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
67 lines (67 loc) · 1.58 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
{
"name": "froala/nova-froala-field",
"description": "A Laravel Nova Froala WYSIWYG Editor Field.",
"keywords": [
"laravel",
"nova",
"field",
"wysiwyg",
"froala",
"editor"
],
"homepage": "https://github.com/froala/nova-froala-field",
"license": "MIT",
"authors": [
{
"name": "Slava Razum",
"email": "modern.web.artisan@gmail.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"php": ">=7.1.3",
"laravel/nova": "*",
"league/flysystem": "^1.0.8",
"spatie/image-optimizer": "^1.1"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench": "^3.8|^4.0",
"phpunit/phpunit": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Froala\\NovaFroalaField\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Froala\\NovaFroalaField\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"Froala\\NovaFroalaField\\FroalaFieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}