-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.38 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
{
"name": "alleyinteractive/byline-manager",
"description": "Byline Manager",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Alley Interactive",
"email": "[email protected]"
}
],
"require-dev": {
"alleyinteractive/alley-coding-standards": "^1.0",
"mantle-framework/testkit": "^0.12.4",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.1.6",
"yoast/phpunit-polyfills": "^3.0",
"axepress/wp-graphql-stubs": "^1.14",
"yoast/wordpress-seo": "^24.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"alleyinteractive/composer-wordpress-autoloader": true,
"phpstan/extension-installer": true,
"composer/installers": false
}
},
"scripts": {
"phpcs": "phpcs . --basepath=.",
"phpcbf": "phpcbf . --basepath=.",
"phpstan": [
"phpstan analyze --ansi --memory-limit=1G"
],
"phpunit": "phpunit",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": ["type:wordpress-plugin"]
}
}
}