-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
64 lines (64 loc) · 1.52 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
62
63
64
{
"name": "nfourtythree/entriessubset",
"description": "Craft field type plugin that extends the core Entries field type to give extra settings with ability to restrict by entry type",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entries subset",
"entriessubset",
"craft3",
"entry types",
"entrytype"
],
"support": {
"docs": "https://github.com/nfourtythree/entriessubset/blob/master/README.md",
"issues": "https://github.com/nfourtythree/entriessubset/issues"
},
"license": "MIT",
"authors": [
{
"name": "Nathaniel Hammond (nfourtythree)",
"homepage": "https://n43.me"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"nfourtythree\\entriessubset\\": "src/"
}
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main"
},
"extra": {
"name": "Entries Subset",
"handle": "entriessubset",
"documentationUrl": "https://raw.githubusercontent.com/nfourtythree/entriessubset/master/README.md"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}