-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.85 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.85 KB
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
62
63
64
65
66
67
{
"name": "superbig/craft3-templateselect",
"description": "A fieldtype that allows you to select a template from a dropdown.",
"type": "craft-plugin",
"version": "5.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"template select"
],
"support": {
"docs": "https://github.com/sjelfull/craft3-templateselect/blob/master/README.md",
"issues": "https://github.com/sjelfull/craft3-templateselect/issues"
},
"license": "MIT",
"authors": [
{
"name": "Superbig",
"homepage": "https://superbig.co"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"markhuot/craft-pest-core": "^3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"superbig\\templateselect\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"extra": {
"name": "Template Select",
"handle": "template-select",
"schemaVersion": "4.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/sjelfull/craft3-templateselect/master/CHANGELOG.md",
"class": "superbig\\templateselect\\TemplateSelect"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}