-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
53 lines (53 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
{
"name": "webdevstudios/wp-search-with-algolia",
"version": "2.1.0",
"description": "Integrate the powerful Algolia search service with WordPress.",
"authors": [
{
"name": "WebDevStudios",
"email": "contact@webdevstudios.com"
}
],
"license": "GPL-3.0",
"keywords": [
"algolia"
],
"homepage": "https://github.com/WebDevStudios/wp-search-with-algolia",
"type": "wordpress-plugin",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"composer/installers": "~1.0"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^3.0.2",
"psr/http-message": "~1.0.1",
"psr/log": "~1.0.2",
"psr/simple-cache": "~1.0.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.2",
"wp-coding-standards/wpcs": "^2.3.0",
"slowprog/composer-copy-file": "^0.3.3"
},
"extra": {
"installer-name": "wp-search-with-algolia",
"copy-file": {
"vendor/algolia": "includes/libraries"
},
"copy-file-dev": {
"vendor/algolia": "includes/libraries",
"vendor/psr": "includes/libraries/algoliasearch-client-php/vendor/psr"
}
},
"scripts": {
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcs.xml --extensions=php .",
"lint:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=phpcs.xml --extensions=php .",
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
}
}