-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·64 lines (64 loc) · 1.8 KB
/
composer.json
File metadata and controls
executable file
·64 lines (64 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
{
"name": "fostercommerce/entry-type-rules",
"description": "A Craft plugin that allows you to set rules on number of entry types in a Craft section and/or limit who can include entry type entries based on their user group.",
"type": "craft-plugin",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entry type",
"rules"
],
"support": {
"docs": "https://github.com/FosterCommerce/entry-type-rules/blob/main/README.md",
"issues": "https://github.com/FosterCommerce/entry-type-rules/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Foster Commerce",
"homepage": "https://fostercommerce.com"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"fostercommerce\\entrytyperules\\": "src/"
}
},
"extra": {
"name": "Entry Type Rules",
"handle": "entry-type-rules",
"developer": "Foster Commerce",
"developerUrl": "https://fostercommerce.com",
"documentationUrl": "https://github.com/FosterCommerce/entry-type-rules/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/FosterCommerce/entry-type-rules/main/CHANGELOG.md"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"craftcms/generator": "^2.1",
"fostercommerce/rector": "dev-main",
"fostercommerce/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.11",
"craftcms/rector": "dev-main"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"ecs-check": "ecs check --ansi --memory-limit=1G",
"ecs-fix": "ecs check --ansi --fix --memory-limit=1G",
"rector": "rector process --config rector.php",
"rector-dry-run": "rector process --dry-run --config rector.php"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}