-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
61 lines (61 loc) · 1.45 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
61
{
"name": "pennebaker/craft-architect",
"description": "CraftCMS plugin to generate content models from JSON/YAML data.",
"type": "craft-plugin",
"version": "4.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"architect"
],
"support": {
"docs": "https://github.com/Pennebaker/craft-architect/blob/master/README.md",
"issues": "https://github.com/Pennebaker/craft-architect/issues"
},
"license": "MIT",
"authors": [
{
"name": "Pennebaker",
"homepage": "https://pennebaker.com"
}
],
"require": {
"ext-json": "*",
"craftcms/cms": "^4",
"symfony/yaml": "^5.0"
},
"autoload": {
"psr-4": {
"pennebaker\\architect\\": "src/"
}
},
"extra": {
"name": "Architect",
"handle": "architect",
"schemaVersion": "2.0.0",
"developer": "Pennebaker",
"hasCpSettings": false,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/Pennebaker/craft-architect/master/CHANGELOG.md",
"components": {
"architectService": "pennebaker\\architect\\services\\ArchitectService"
},
"class": "pennebaker\\architect\\Architect"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"spicyweb/craft-neo": "^3.1",
"verbb/super-table": "3.0.0-beta.6"
}
}