-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
53 lines (53 loc) · 1.83 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
{
"name": "krzysztof-gzocha/searcher",
"description": "Searcher is a framework-agnostic search query builder. Search queries are written using Criterias and can be run against MySQL, MongoDB, ElasticSearch or even files.",
"keywords": ["search", "searcher", "agnostic", "query", "builder", "elastic", "mongo", "doctrine", "criteria"],
"license": "MIT",
"type": "library",
"homepage": "http://searcher.rtfd.io",
"authors": [
{
"name": "Krzysztof Gzocha"
}
],
"suggest": {
"doctrine/orm": "to use with Doctrine's ORM",
"doctrine/mongodb-odm": "to use with Doctrine's ODM",
"ruflin/elastica": "to use with ruflin/elastica",
"symfony/finder": "to use with Symfony Finder component"
},
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"KGzocha\\Searcher\\": "src/KGzocha/Searcher"
}
},
"autoload-dev": {
"psr-4": {
"KGzocha\\Searcher\\Test\\": "tests"
}
},
"require":{
"php": "^7"
},
"require-dev": {
"phpunit/phpunit": "^5",
"phpmd/phpmd": "^2.4.3",
"doctrine/orm": "^2.5.0",
"doctrine/mongodb-odm": "^1.0.0",
"ruflin/elastica": "^2.1.0",
"symfony/finder": "^2.0.5"
},
"scripts": {
"test": ["phpunit tests/"],
"coverage": ["phpunit tests/ --coverage-clover=coverage.clover"],
"coverage-html": ["phpunit tests/ --coverage-html coverage/", "open coverage/index.html"],
"cs-fix": ["php-cs-fixer fix src/ --level=psr2", "php-cs-fixer fix tests/ --level=psr2"],
"phpmd": ["phpmd src/ text cleancode,codesize,controversial,design,unusedcode --exclude tests/"],
"ci": ["@coverage", "@phpmd"]
}
}