-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 879 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
36
37
38
39
40
{
"name": "strehle-de/topiccards-lib",
"type": "library",
"description": "TopicCards Neo4j backend",
"homepage": "https://github.com/tistre/TopicCards-lib",
"license": "MIT",
"authors": [
{
"name": "Tim Strehle",
"homepage": "https://github.com/tistre",
"role": "Developer"
}
],
"require": {
"php": ">=7.4 <8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-xmlreader": "*",
"elasticsearch/elasticsearch": "~7.0",
"laudis/neo4j-php-client": "^2.3",
"monolog/monolog": "^2.3",
"ramsey/uuid": "^4.2",
"symfony/config": ">=5.4",
"symfony/yaml": ">=5.4",
"twig/twig": "^3.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"StrehleDe\\TopicCards\\": "src/"
}
}
}