forked from WebDevStudios/wp-search-with-algolia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "webdevstudios/wp-search-with-algolia",
"version": "2.8.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.4",
"composer/installers": "~1.0"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.2",
"wp-coding-standards/wpcs": "^2.3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"psr/simple-cache": "^1.0",
"brianhenryie/strauss": "^0.11.1",
"php-stubs/wp-cli-stubs": "^2.7",
"php-stubs/wordpress-stubs": "^6.1"
},
"extra": {
"installer-name": "wp-search-with-algolia",
"strauss": {
"target_directory": "vendor_prefixed",
"namespace_prefix": "WebDevStudios\\WPSWA\\",
"classmap_prefix": "WDS_WPSWA_",
"constant_prefix": "WDS_WPSWA_",
"packages": [
"algolia/algoliasearch-client-php",
"psr/http-message",
"psr/log",
"psr/simple-cache"
],
"override_autoload": {
},
"exclude_from_copy": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
]
},
"exclude_from_prefix": {
"packages": [
],
"namespaces": [
],
"file_patterns": [
]
},
"namespace_replacement_patterns" : {
},
"delete_vendor_files": false
},
"copy-file": {
},
"copy-file-dev": {
}
},
"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": [
"@php ./vendor/bin/strauss"
],
"post-update-cmd": [
"@php ./vendor/bin/strauss"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}