-
Notifications
You must be signed in to change notification settings - Fork 793
/
composer.json
100 lines (100 loc) · 3.29 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
{
"name": "friendsofsymfony/elastica-bundle",
"description": "Elasticsearch PHP integration for your Symfony project using Elastica",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"doctrine2",
"elastica",
"elasticsearch",
"mongodb",
"search"
],
"authors": [
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/FOSElasticaBundle/contributors"
},
{
"name": "Tim Nagel",
"email": "tim@nagel.com.au"
},
{
"name": "Richard Miller",
"email": "richard.miller@limethinking.co.uk"
},
{
"name": "Jeremy Mikola",
"email": "jmikola@gmail.com"
}
],
"homepage": "https://github.com/FriendsOfSymfony/FOSElasticaBundle",
"require": {
"php": "^7.4 || ^8.1",
"pagerfanta/pagerfanta": "^2.4 || ^3.0 || ^4.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ruflin/elastica": "^7.1",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.1.1",
"doctrine/mongodb-odm": "^2.2",
"doctrine/orm": "^2.8 || ^3.2",
"doctrine/phpcr-odm": "^1.5.3 || ^2.0",
"ergebnis/composer-normalize": "^2.28",
"jackalope/jackalope-doctrine-dbal": "^1.2 || ^2.0",
"jms/serializer": "^3.8",
"jms/serializer-bundle": "^4.0 || ^5.0",
"knplabs/knp-components": "^2.4 || ^3.0 || ^4.0",
"php-cs-fixer/shim": "3.8.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"symfony/expression-language": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"enqueue/elastica-bundle": "For populating Elasticsearch indexes asynchronously and using significanly less resources. Uses Enqueue.",
"symfony/messenger": "For populating Elasticsearch indexes asynchronously and using significanly less resources."
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"FOS\\ElasticaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\ElasticaBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.4.x-dev"
}
},
"scripts": {
"cs": [
"@php vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"sca": [
"@php vendor/bin/phpstan --memory-limit=256M"
]
}
}