-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
123 lines (123 loc) · 4.43 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
123
{
"name": "setono/sylius-meilisearch-plugin",
"description": "Meilisearch integration for your Sylius store",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin",
"meilisearch",
"setono"
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"doctrine/collections": "^1.8 || ^2.0",
"doctrine/event-manager": "^1.2 || ^2.0",
"doctrine/orm": "^2.14 || ^3.0",
"doctrine/persistence": "^2.5 || ^3.0",
"dragon-code/size-sorter": "^1.5",
"knplabs/knp-menu": "^3.4",
"liip/imagine-bundle": "^2.10",
"meilisearch/meilisearch-php": "^1.8",
"ocramius/doctrine-batch-utils": "^2.4",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/container": "^1.0 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.2",
"setono/doctrine-orm-trait": "^1.1",
"sylius/channel": "^1.0",
"sylius/channel-bundle": "^1.0",
"sylius/core": "^1.0",
"sylius/core-bundle": "^1.0",
"sylius/currency": "^1.0",
"sylius/grid-bundle": "^1.11",
"sylius/locale": "^1.0",
"sylius/locale-bundle": "^1.0",
"sylius/product": "^1.0",
"sylius/resource-bundle": "^1.6",
"sylius/taxonomy": "^1.0",
"sylius/ui-bundle": "^1.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^1.1 || ^2.5 || ^3.2",
"symfony/validator": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^2.15 || ^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"api-platform/core": "^2.7.16",
"babdev/pagerfanta-bundle": "^3.8",
"behat/behat": "^3.14",
"doctrine/annotations": "^1.14.4 || ^2.0.2",
"doctrine/data-fixtures": "^1.7",
"doctrine/doctrine-bundle": "^2.11",
"infection/infection": "^0.27.10",
"jms/serializer-bundle": "^4.2",
"lexik/jwt-authentication-bundle": "^2.17",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.1",
"nyholm/psr7": "^1.8",
"phpspec/prophecy-phpunit": "^2.3",
"phpunit/phpunit": "^9.6.21",
"psalm/plugin-phpunit": "^0.18.4",
"setono/code-quality-pack": "^2.8.3",
"sylius/sylius": "~1.12.19",
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.0",
"symfony/debug-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/intl": "^5.4 || ^6.4 || ^7.0",
"symfony/property-info": "^5.4 || ^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/webpack-encore-bundle": "^1.17.2",
"willdurand/negotiation": "^3.1"
},
"conflict": {
"illuminate/contracts": "<8.68.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusMeilisearchPlugin\\": "src/"
},
"files": [
"src/Resources/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Setono\\SyliusMeilisearchPlugin\\Tests\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": false,
"symfony/thanks": false
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit --exclude-group=functional",
"rector": "rector"
}
}