-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.07 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
{
"name": "10up/publisher-media-kit",
"type": "wordpress-plugin",
"authors": [
{
"name": "10up",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"10up/wp-compat-validation-tool": "dev-trunk"
},
"autoload": {
"psr-4": {
"PublisherMediaKit\\": "includes/classes/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"10up/wp_mock": "^0.4.2",
"10up/phpcs-composer": "dev-master"
},
"scripts": {
"lint": "phpcs . --runtime-set testVersion 7.4-",
"lint-fix": "phpcbf .",
"post-install-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh PublisherMediaKitValidator"
],
"post-update-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh PublisherMediaKitValidator"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/10up/wp-compat-validation-tool.git"
}
],
"extra": {
"installer-paths": {
"./{$name}/": ["10up/wp-compat-validation-tool"]
}
}
}