-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.08 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.08 KB
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": "mezcalito/ux-search",
"type": "symfony-bundle",
"description": "Effortless search and faceted search with Symfony UX and Mezcalito UX Search",
"homepage": "https://github.com/Mezcalito/ux-search",
"keywords": [
"symfony-ux", "listing", "search", "meilisearch", "faceted search"
],
"license": "MIT",
"require": {
"php": ">=8.3",
"nyholm/psr7": "^1.0",
"phpdocumentor/reflection-docblock": "^5.4",
"symfony/asset": "^6.4|^7.0|^8.0",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/http-client": "^6.4|^7.0|^8.0",
"symfony/options-resolver": "^6.4|^7.0|^8.0",
"symfony/serializer": "^6.4|^7.0|^8.0",
"symfony/ux-live-component": "^2.20",
"symfony/ux-twig-component": "^2.20",
"twig/twig": "^3.8"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^4.37",
"doctrine/doctrine-bundle": "^2.13|^3.0",
"doctrine/orm": "^3.3",
"friendsofphp/php-cs-fixer": "^3.64",
"meilisearch/meilisearch-php": "^1.10",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.4",
"rector/rector": "^2.3",
"symfony/asset-mapper": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"symfony/maker-bundle": "^1.62",
"symfony/runtime": "^6.4|^7.0|^8.0",
"symfony/translation": "^7.2",
"symfony/var-exporter": "^6.4|^7.0|^8.0",
"symfony/web-profiler-bundle": "^6.4|^7.0|^8.0"
},
"suggest": {
"algolia/algoliasearch-client-php": "Needed to use Algolia adapter",
"doctrine/doctrine-bundle": "Needed to use Orm adapter",
"meilisearch/meilisearch-php": "Needed to use Meilisearch adapter"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Mezcalito\\UxSearchBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mezcalito\\UxSearchBundle\\Tests\\": "tests",
"Mezcalito\\UxSearchBundle\\Tests\\TestApplication\\": "tests/TestApplication/src"
}
}
}