-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 905 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
{
"name": "homersimpsons/es-qb",
"description": "A query Builder for Elasticsearch",
"type": "library",
"require-dev": {
"phpstan/phpstan": "^0.12.48",
"doctrine/coding-standard": "^8.1",
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.5",
"elasticsearch/elasticsearch": "^7.9",
"ext-json": "*"
},
"license": "MIT",
"require": {
"php": "^7.4"
},
"autoload": {
"psr-4": {
"EsQb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EsQb\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyze src -c phpstan.neon",
"csfix": "phpcbf",
"cscheck": "phpcs",
"test": "phpunit",
"test:integration": "phpunit -c phpunit_integration.xml.dist",
"test:all": ["@test", "@test:integration"]
}
}