-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.5 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
{
"name": "verbb/zen",
"description": "Manage content across multiple environments with ease.",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"zen"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/zen/issues?state=open",
"source": "https://github.com/verbb/zen",
"docs": "https://github.com/verbb/zen",
"rss": "https://github.com/verbb/zen/commits/v2.atom"
},
"license": "proprietary",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"mistralys/text-diff": "^2.0",
"nystudio107/craft-plugin-vite": "^5.0.0",
"verbb/base": "^3.0.0",
"wa72/htmlpagedom": "^2.0 || ^3.0"
},
"require-dev": {
"codeception/codeception": "^4.0.0",
"vlucas/phpdotenv": "^3.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-yii2": "^1.0.0"
},
"autoload": {
"psr-4": {
"verbb\\zen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"verbb\\zentests\\": "tests/"
}
},
"extra": {
"name": "Zen",
"handle": "zen",
"changelogUrl": "https://raw.githubusercontent.com/verbb/zen/craft-5/CHANGELOG.md",
"class": "verbb\\zen\\Zen"
}
}