-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
53 lines (53 loc) · 1.41 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
{
"name": "spicyweb/craft-quick-field",
"description": "Create Craft CMS fields on the fly while designing field layouts",
"version": "2.0.8",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"plugin"
],
"license": "MIT",
"authors": [
{
"name": "Spicy Web",
"homepage": "https://spicyweb.com.au/"
}
],
"support": {
"issues": "https://github.com/spicywebau/craft-quick-field/issues",
"source": "https://github.com/spicywebau/craft-quick-field",
"docs": "https://github.com/spicywebau/craft-quick-field/blob/2.0.8/README.md",
"rss": "https://github.com/spicywebau/craft-quick-field/commits/2.x.atom"
},
"require": {
"craftcms/cms": "^4.1.0",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"spicyweb\\quickfield\\": "src/"
}
},
"extra": {
"handle": "quick-field",
"name": "Quick Field",
"schemaVersion": "1.0.0",
"class": "spicyweb\\quickfield\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-quick-field/blob/2.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-quick-field/archive/refs/tags/2.0.8.zip"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/ecs": "dev-main"
}
}