-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
122 lines (122 loc) · 2.99 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "renatonascalves/elasticsearch-buddypress",
"type": "wordpress-plugin",
"description": "BuddyPress integration with Elasticsearch.",
"homepage": "https://github.com/renatonascalves/elasticsearch-buddypress",
"license": "GPL-3.0-or-later",
"keywords": [
"buddypress",
"search",
"elasticsearch",
"elasticpress",
"searchpress"
],
"authors": [
{
"name": "Renato Alves",
"homepage": "https://ralv.es"
}
],
"support": {
"issues": "https://github.com/renatonascalves/elasticsearch-buddypress/issues",
"source": "https://github.com/renatonascalves/elasticsearch-buddypress"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*"
]
},
{
"type": "package",
"package": {
"name": "buddypress/buddypress",
"version": "dev-master",
"type": "wordpress-plugin",
"source": {
"url": "https://github.com/buddypress/buddypress.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": "^8.3",
"spatie/elasticsearch-query-builder": "^1.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0",
"alleyinteractive/pest-plugin-wordpress": "^0.5",
"buddypress/buddypress": "dev-master",
"mantle-framework/testkit": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"wpackagist-plugin/elasticpress": "^5.0"
},
"scripts": {
"phpcs": "phpcs . --basepath=.",
"phpcbf": "phpcbf . --basepath=.",
"phpstan": "phpstan analyze --ansi --memory-limit=1G",
"phpunit": "pest",
"test_multi": "WP_MULTISITE=1 pest"
},
"config": {
"platform": {
"php": "8.3"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"alleyinteractive/composer-wordpress-autoloader": true,
"pestphp/pest-plugin": true,
"composer/installers": true
}
},
"autoload-dev": {
"psr-4": {
"Elasticsearch\\BuddyPress\\": "src/",
"Elasticsearch\\BuddyPress\\Tests\\": "tests"
}
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Elasticsearch\\BuddyPress\\": "src/"
},
"autoload-dev": {
"Elasticsearch\\BuddyPress\\Tests\\": "tests/"
}
},
"installer-paths": {
"../{$name}": [
"type:wordpress-plugin"
],
"../buddypress": [
"buddypress/buddypress"
]
}
},
"archive": {
"exclude": [
"*.yml",
"*.xml",
"*.dist",
"*.cache",
"CHANGELOG.md",
".editorconfig",
".gitignore",
".deployignore",
".github/",
".phpcs/",
"tests/",
"elasticsearch-buddypress.zip",
"!vendor/"
]
}
}