-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.57 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
{
"name": "10up/elasticpress-labs",
"description": "A developer focused interface to commonly ElasticPress plugin issues.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "10up",
"email": "[email protected]",
"homepage": "https://10up.com",
"role": "Developer"
}
],
"require": {
"php": "^7.0|^8.0",
"yahnis-elsts/plugin-update-checker": "*"
},
"autoload": {
"psr-4": {
"ElasticPressLabs\\": "includes/classes/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require-dev": {
"phpunit/phpunit": "^9",
"10up/wp_mock": "dev-trunk",
"10up/phpcs-composer": "^3.0",
"10up/elasticpress": "dev-develop",
"yoast/phpunit-polyfills": "^1.0",
"wpackagist-plugin/woocommerce": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99"
},
"scripts": {
"lint": "phpcs . -s --runtime-set testVersion 7.0-",
"lint-fix": "phpcbf . --runtime-set testVersion 7.0-",
"test": "phpunit",
"setup-local-tests": "bash bin/install-wp-tests.sh epl_wp_test root password 127.0.0.1 latest true",
"post-autoload-dump": [
"./bin/build-elasticpress.sh"
]
},
"extra": {
"installer-paths": {
"vendor/{$name}/": [
"type:wordpress-plugin",
"type:wordpress-theme"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}