-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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": "sebastianlenz/contentfield",
"description": "A Craft field type for editing structured content",
"type": "craft-plugin",
"license": "proprietary",
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zlib": "*",
"craftcms/ckeditor": "^4.2.0",
"craftcms/cms": "^5.3.0",
"craftcms/redactor": "^4.0.0",
"sebastianlenz/craft-utils": "^4.0.1",
"symfony/yaml": "^5.4.21",
"deeplcom/deepl-php": "^1.8"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.5",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"lenz\\contentfield\\tests\\": "tests/",
"lenz\\contentfield\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/codecept run unit",
"test-coverage": "vendor/bin/codecept run unit --coverage-xml coverage.xml"
},
"extra": {
"handle": "contentfield",
"name": "Content Field",
"developer": "Sebastian Lenz",
"developerUrl": "https://github.com/sebastian-lenz/"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"php-http/discovery": true
},
"platform": {
"php": "8.2.0"
}
}
}