generated from helsingborg-stad/Wordpress-Plugin-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.42 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
{
"name": "helsingborg-stad/algolia-index",
"description": "Index wordpress site content to algolia.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Sebastian Thulin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"AlgoliaIndex\\": "source/php/"
}
},
"require": {
"algolia/algoliasearch-client-php": "3.3"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html .coverage/html --coverage-clover .coverage/clover.xml",
"test:setup": "tests/install-wp-tests.sh"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^1.0",
"php-stubs/wordpress-tests-stubs": "^6.1"
},
"version": "3.2.1"
}