forked from EngageDC/query-text-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 896 Bytes
/
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
{
"name": "barnetik/query-text-parser",
"description": "This Query Text Parser library converts a search query into an abstract syntax tree (AST).",
"version": "3.0.0",
"authors": [
{
"name": "Mathias Hansen",
"email": "mathias@engagedc.com"
},
{
"name": "Alayn Gortazar",
"email": "alayn@barnetik.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Barnetik/shuntingyard"
}
],
"require": {
"php": ">=7.2.0",
"barnetik/shuntingyard": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-0": {
"Engage\\QueryTextParser\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}