-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.72 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
{
"name": "fork/craft-elastica",
"description": "A plugin to connect to Elasticsearch and persist elements via hooks",
"type": "craft-plugin",
"version": "4.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"elasticsearch",
"elastica",
"search"
],
"support": {
"docs": "https://github.com/fork/elastica/blob/master/README.md",
"issues": "https://github.com/fork/elastica/issues"
},
"license": "MIT",
"authors": [
{
"name": "Fork Unstable Media GmbH",
"homepage": "https://fork.de"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"elasticsearch/elasticsearch": "^8.0"
},
"autoload": {
"psr-4": {
"fork\\elastica\\": "src/"
}
},
"extra": {
"name": "Elastica",
"handle": "elastica",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/fork/elastica/master/CHANGELOG.md",
"components": {
"indexer": "fork\\elastica\\services\\Indexer"
},
"class": "fork\\elastica\\Elastica"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"php-http/discovery": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"craftcms/phpstan": "dev-main"
},
"scripts": {
"fix-cs": "php-cs-fixer fix src",
"phpstan": "phpstan --memory-limit=1G"
}
}