-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
70 lines (70 loc) · 1.72 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
{
"name": "itinerisltd/itineris-wp-coding-standards",
"description": "PHP_CodeSniffer rules for Itineris WordPress projects",
"license": "MIT",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"standards",
"wordpress",
"itineris"
],
"authors": [
{
"name": "Itineris Limited",
"email": "[email protected]",
"homepage": "https://itineris.co.uk/",
"role": "Company"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"homepage": "https://typist.tech/",
"role": "Developer"
},
{
"name": "Lee Hanbury-Pickett",
"email": "[email protected]",
"homepage": "https://github.com/codepuncher",
"role": "Developer"
}
],
"homepage": "https://itinerisltd.github.io/itineris-wp-coding-standards/",
"support": {
"email": "[email protected]",
"issues": "https://github.com/ItinerisLtd/itineris-wp-coding-standards/issues",
"source": "https://github.com/ItinerisLtd/itineris-wp-coding-standards"
},
"require": {
"php": "^8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"slevomat/coding-standard": "^8.8",
"wp-coding-standards/wpcs": "^2.3"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"scripts": {
"pretag": [
"composer update",
"composer normalize",
"npx doctoc README.md",
"github_changelog_generator --no-verbose"
]
}
}