-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
52 lines (52 loc) · 1 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
{
"name": "nadar/quill-delta-parser",
"description": "A PHP library to parse Quill WYSIWYG editor deltas into HTML - flexible and extendible for custom elements.",
"keywords": [
"quill",
"delta",
"html",
"parser",
"renderer",
"quill-editor",
"quill-delta",
"quilljs"
],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"license": "MIT",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"nadar\\quill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"nadar\\quill\\tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan -v",
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*"
}
}