-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.55 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
{
"name": "spicyweb/craft-tinymce",
"description": "Adds the TinyMCE rich text editor as a Craft CMS field type",
"version": "2.0.1",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"plugin",
"field",
"tinymce"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Spicy Web",
"email": "[email protected]",
"homepage": "https://spicyweb.com.au/"
}
],
"support": {
"issues": "https://github.com/spicywebau/craft-tinymce/issues",
"source": "https://github.com/spicywebau/craft-tinymce",
"docs": "https://github.com/spicywebau/craft-tinymce/blob/2.0.1/README.md",
"rss": "https://github.com/spicywebau/craft-tinymce/commits/2.x.atom"
},
"require": {
"craftcms/cms": "^5.0.0",
"craftcms/html-field": "^3.0.0",
"php": "^8.2"
},
"autoload": {
"psr-4": {
"spicyweb\\tinymce\\": "src/"
}
},
"extra": {
"handle": "tinymce",
"name": "TinyMCE Field",
"class": "spicyweb\\tinymce\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-tinymce/blob/2.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-tinymce/archive/refs/tags/2.0.1.zip"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}