-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·80 lines (80 loc) · 2.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "delaneymethod/craft-vocabulary",
"description": "Vocabulary is the easiest way to create and manage your own glossary of terms in Craft CMS.",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft-vocabulary",
"glossary",
"vocabulary"
],
"license": "proprietary",
"support": {
"email": "[email protected]",
"docs": "https://github.com/delaneymethod/craft-vocabulary/blob/main/README.md",
"issues": "https://github.com/delaneymethod/craft-vocabulary/issues"
},
"authors": [
{
"name": "DelaneyMethod",
"homepage": "https://delaneymethod.com"
}
],
"require": {
"php": ">=7.2.5",
"craftcms/cms": "^3.7.0"
},
"autoload": {
"psr-4": {
"delaneymethod\\vocabulary\\": "src/"
}
},
"extra": {
"name": "Vocabulary",
"handle": "vocabulary",
"developer": "DelaneyMethod",
"developerUrl": "https://delaneymethod.com",
"documentationUrl": "https://github.com/delaneymethod/craft-vocabulary/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/delaneymethod/craft-vocabulary/main/CHANGELOG.md",
"components": {
"glossary": "delaneymethod\\vocabulary\\services\\Vocabulary"
},
"class": "delaneymethod\\vocabulary\\Vocabulary",
"hooks": {
"config": {
"stop-on-failure": ["pre-commit"]
},
"pre-commit": [
"composer run-script phpstan",
"composer run-script ecs"
]
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.8"
},
"scripts": {
"cghooks": "vendor/bin/cghooks",
"phpstan": "vendor/bin/phpstan --memory-limit=1G",
"ecs": "vendor/bin/ecs check --fix"
},
"minimum-stability": "dev",
"prefer-stable": true
}