forked from ckeditor/ckeditor4-releases
-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
40 lines (40 loc) · 971 Bytes
/
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
{
"name": "unisharp/laravel-ckeditor",
"description": "JavaScript WYSIWYG web text editor (for laravel).",
"type": "library",
"keywords": [ "ckeditor", "fckeditor", "editor", "wysiwyg", "html", "richtext", "text", "javascript", "laravel"],
"homepage": "http://ckeditor.com",
"license": [ "GPL-2.0+", "LGPL-2.1+", "MPL-1.1+" ],
"authors": [
{
"name": "CKSource",
"homepage": "http://cksource.com"
},
{
"name": "UniSharp Ltd. (Composer Package Maintainer)",
"homepage": "http://www.unisharp.com"
}
],
"support": {
"issues": "http://dev.ckeditor.com",
"forum": "http://ckeditor.com/forums",
"wiki": "http://docs.ckeditor.com",
"source": "http://github.com/ckeditor/ckeditor-dev"
},
"autoload": {
"psr-4": {
"Unisharp\\Ckeditor\\": "./"
}
},
"require": {
"illuminate/support": "~5.0|^6.0"
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Unisharp\\Ckeditor\\ServiceProvider"
]
}
}
}