-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.4 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.4 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
{
"name": "myappin/elasticsearchpredicate",
"homepage": "https://github.com/myappin/elasticsearchpredicate",
"description": "ElasticSearch nested predicate generator",
"license": "BSD-3-Clause",
"keywords": [
"elasticsearch",
"predicate"
],
"config": {
"discard-changes": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "myappin/knapsack",
"version": "dev-master",
"source": {
"url": "https://github.com/myappin/knapsack.git",
"type": "git",
"reference": "master"
},
"autoload": {
"files": [
"src/collection_functions.php",
"src/utility_functions.php"
],
"psr-4": {
"DusanKasan\\Knapsack\\": "src/"
}
}
}
}
],
"require": {
"ext-curl": "*",
"php": ">=8.1",
"opensearch-project/opensearch-php": "2.3.1",
"myappin/knapsack": "dev-master#e42820bbfe3315aeeec32a164882c5aba32b93b1",
"guzzlehttp/guzzle": "7.9.2"
},
"require-dev": {
"phpunit/phpunit": "9.5.6"
},
"autoload": {
"psr-4": {
"ElasticSearchPredicate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElasticSearchPredicateTest\\": "test/"
}
},
"scripts": {
"check": [
"@test"
],
"test": "phpunit"
}
}