-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.85 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": "bedita/elastic-search",
"description": "ElasticSearch plugin for BEdita",
"type": "cakephp-plugin",
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/bedita/elastic-search",
"issues": "https://github.com/bedita/elastic-search/issues"
},
"authors": [
{
"name": "Atlas s.r.l.",
"email": "[email protected]",
"homepage": "https://www.atlasconsulting.it"
},
{
"name": "Chia Lab s.r.l.",
"email": "[email protected]",
"homepage": "http://www.chialab.it"
}
],
"require": {
"php": "^8.1",
"cakephp/cakephp": "^4.4.1",
"cakephp/elastic-search": "^3.4",
"bedita/core": "^5.19.0",
"ruflin/elastica": "^7.1",
"elasticsearch/elasticsearch": "^7.10"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"cakephp/cakephp-codesniffer": "^5.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3"
},
"autoload": {
"psr-4": {
"BEdita\\ElasticSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\ElasticSearch\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"BEdita\\Core\\Test\\": "vendor/bedita/core/tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"stan": "vendor/bin/phpstan analyse"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}