-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.88 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.88 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
66
67
68
69
{
"name": "markup/needle-bundle",
"description": "A Symfony bundle for search. Defines a standard search query builder (including filters and faceting), and integrates with different backends (currently Solr and Elastic).",
"keywords": [
"search",
"faceting",
"solr"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Douglas Greenshields",
"email": "douglas@usemarkup.com"
},
{
"name": "Calum Brodie",
"email": "calum@usemarkup.com"
},
{
"name": "Markup",
"homepage": "http://www.usemarkup.com/"
}
],
"require": {
"php": ">=7.1",
"nelmio/solarium-bundle": "^2.0.4",
"pagerfanta/pagerfanta": "~1.0.1",
"symfony/framework-bundle": "^3.4|^4",
"twig/twig": "~1.12|~2.0",
"markup/json": "^0.1",
"doctrine/collections": "^1.5",
"doctrine/orm": "^2.4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"mockery/mockery": "^1.2",
"symfony/templating": "^3.4|^4",
"symfony/translation": "^3.4|^4",
"markup/coding-standard": "^0.17",
"phpstan/phpstan-shim": "^0.11",
"solarium/solarium": "^3.1.0",
"shieldo/solarium-async-plugin": "^0.2",
"elasticsearch/elasticsearch": "^6|^7"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/usemarkup/markup-coding-standard",
"no-api": true
}
],
"autoload": {
"psr-4": {
"Markup\\NeedleBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Markup\\NeedleBundle\\Tests\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}