-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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
{
"name": "fsi/datasource-elastica-driver",
"type": "library",
"description": "Elastica FSi DataSource Driver",
"keywords": ["fsi", "component", "datasource", "driver", "elastica", "elasticsearch"],
"license": "MIT",
"authors": [
{
"name": "Piotr Kapera",
"email": "piotr.kapera@fsi.pl"
}
],
"require": {
"php": "^7.4|^8.0",
"fsi/datasource" : "^2.0",
"ruflin/elastica": "^7.1",
"symfony/property-access": "^4.0|^5.0",
"symfony/options-resolver": "^4.0|^5.0",
"doctrine/collections": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"psr/log": "^1.0",
"symfony/phpunit-bridge": "^5.0"
},
"autoload": {
"psr-4": {
"FSi\\Component\\DataSource\\Driver\\Elastica\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FSi\\Component\\DataSource\\Driver\\Elastica\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"bin-dir": "vendor/bin"
}
}