-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
50 lines (50 loc) · 1.21 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
{
"name": "bizley/quill",
"description": "Quill editor implementation for Yii 2.",
"type": "yii2-extension",
"keywords": ["yii2","quill","wysiwyg","widget","editor","katex","highlight.js"],
"license": "Apache-2.0",
"authors": [
{
"name": "Paweł Bizley Brzozowski",
"email": "pawel@positive.codes"
}
],
"support": {
"source": "https://github.com/bizley/yii2-quill"
},
"require": {
"php": ">=7.1",
"yiisoft/yii2": "^2.0.0"
},
"require-dev": {
"npm-asset/highlight.js": "^11.0",
"npm-asset/katex": "^0.12",
"npm-asset/quill": "^1.3",
"npm-asset/quill-smart-break": "^0.2",
"phpunit/phpunit": ">=7.5",
"roave/security-advisories": "dev-latest"
},
"suggest": {
"npm-asset/highlight.js": "For local highlight.js assets",
"npm-asset/katex": "For local KaTeX assets",
"npm-asset/quill": "For local Quill assets",
"npm-asset/quill-smart-break": "For 'SHIFT + Enter' newline support"
},
"autoload": {
"psr-4": {
"bizley\\quill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"bizley\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}