-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.84 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
{
"name": "setono/sylius-elasticsearch-plugin",
"description": "Elasticsearch plugin for Sylius",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"elasticsearch",
"search"
],
"require": {
"php": ">=8.1",
"doctrine/event-manager": "^1.2",
"doctrine/orm": "^2.15",
"doctrine/persistence": "^2.5 || ^3.0",
"friendsofsymfony/elastica-bundle": "^6.2",
"pagerfanta/pagerfanta": "^3.0",
"psr/event-dispatcher": "^1.0",
"ruflin/elastica": "^7.3",
"sylius/channel": "^1.0",
"sylius/core": "^1.0",
"sylius/core-bundle": "^1.0",
"sylius/locale": "^1.0",
"sylius/product": "^1.0",
"sylius/resource-bundle": "^1.0",
"sylius/taxonomy-bundle": "^1.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"loevgaard/sylius-brand-plugin": "^2.2",
"psalm/plugin-symfony": "^5.0",
"setono/code-quality-pack": "^2.6",
"sylius/sylius": "~1.11.15"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusElasticsearchPlugin\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"symfony/thanks": false
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix"
}
}