-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
47 lines (47 loc) · 1.31 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
{
"name": "cakedc/tiny-mce",
"description": "TinyMCE Plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": ["tinymce", "wysiwyg", "editor"],
"homepage": "https://github.com/CakeDC/TinyMCE",
"license": "MIT",
"authors": [
{
"name": "Cake Development Corporation",
"email": "team@cakedc.com",
"homepage": "http://cakedc.com"
}
],
"support": {
"email": "team@cakedc.com",
"issues": "https://github.com/CakeDC/TinyMCE/issues",
"forum": "http://stackoverflow.com/tags/cakedc",
"wiki": "https://github.com/CakeDC/TinyMCE/blob/master/Docs/Home.md",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/CakeDC/TinyMCE"
},
"require": {
"php": ">=5.5.9",
"cakephp/cakephp": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "^4.0",
"phpstan/phpstan": "^0.12.18",
"psalm/phar": "~3.11.2"
},
"autoload": {
"psr-4": {
"TinyMCE\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TinyMCE\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"extra": {
"installer-name": "TinyMCE"
}
}