-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
80 lines (80 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"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
},
"repositories": [
{
"type": "package",
"package": {
"name": "myappin/elasticsearch-php",
"version": "dev-master",
"source": {
"url": "https://github.com/myappin/elasticsearch-php.git",
"type": "git",
"reference": "5.x"
},
"autoload": {
"psr-4": {
"Elasticsearch\\": "src/Elasticsearch/"
}
}
}
},
{
"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",
"myappin/elasticsearch-php": "dev-master#d032d36333f1c66b27b60601529512448cbdc920",
"psr/log": "~1.0",
"ezimuel/ringphp": "1.2.0",
"myappin/knapsack": "dev-master#e42820bbfe3315aeeec32a164882c5aba32b93b1"
},
"require-dev": {
"phpunit/phpunit": "9.5.6"
},
"autoload": {
"psr-4": {
"ElasticSearchPredicate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElasticSearchPredicateTest\\": "test/"
}
},
"scripts": {
"check": [
"@test"
],
"test": "phpunit"
}
}