-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "zeix/craft-entry-type-policy",
"description": "Restrict which user groups may create entries of a given entry type, and how many entries of that type a section may hold — per site. Rules are editable in the control panel or version-controlled in a config file.",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entry-types",
"permissions",
"multisite"
],
"support": {
"docs": "https://github.com/zeixcom/craft-entry-type-policy/blob/main/README.md",
"issues": "https://github.com/zeixcom/craft-entry-type-policy/issues",
"email": "webmaster@zeix.com"
},
"license": "mit",
"authors": [
{
"name": "Zeix AG",
"homepage": "https://zeix.com"
}
],
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.8.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"zeix\\craftentrytypepolicy\\": "src/"
}
},
"extra": {
"handle": "entry-type-policy",
"name": "Entry Type Policy",
"developer": "Zeix AG",
"developerUrl": "https://zeix.com",
"documentationUrl": "https://github.com/zeixcom/craft-entry-type-policy/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/zeixcom/craft-entry-type-policy/main/CHANGELOG.md",
"class": "zeix\\craftentrytypepolicy\\EntryTypePolicy"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"test": "php tests/resolve-rule-test.php"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}