-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
52 lines (52 loc) · 1.4 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
{
"name": "erichard/elasticsearch-query-builder",
"license": "MIT",
"type": "library",
"description": "Create elastic search query with a fluent interface",
"authors": [
{
"name": "Erwan Richard",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Erichard\\ElasticQueryBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Erichard\\ElasticQueryBuilder\\": "tests/"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4.10",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpunit/phpunit": "^9.5.19",
"rector/rector": "^0.12.17",
"symplify/easy-coding-standard": "^10.1"
},
"scripts": {
"lint:fix": "php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=./.php_cs.dist.php",
"lint:stan": "./vendor/bin/phpstan",
"lint": "composer lint:fix && composer lint:stan",
"test": "./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"symfony/thanks": false
}
}
}