forked from neo4j-php/neo4j-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.52 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": "neo4j/neo4j-bundle",
"description": "Symfony integration for Neo4j",
"type": "symfony-bundle",
"keywords": ["neo4j"],
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
},
{
"name": "Xavier Coureau",
"email": "xavier@pandawan-technology.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"laudis/neo4j-php-client": "^2.6",
"symfony/dependency-injection": "^5.0|^6.0",
"symfony/framework-bundle": "^5.0|^6.0",
"symfony/http-kernel": "^5.0|^6.0",
"twig/twig": "^3.0",
"symfony/event-dispatcher-contracts": "^2.0",
"symfony/event-dispatcher": "^5.0|^6.0",
"symfony/http-foundation": "^5.0|^6.0",
"symfony/config": "^5.0|^6.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.0",
"vimeo/psalm": "^4.10"
},
"suggest": {
"plumtreesystems/neo4j-php-ogm": "To have EntityManager support"
},
"autoload": {
"psr-4": {
"Neo4j\\Neo4jBundle\\": ""
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}