forked from neo4j-php/neo4j-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.12 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
{
"name": "neo4j/neo4j-bundle",
"description": "Symfony integration for Neo4j",
"type": "symfony-bundle",
"keywords": ["neo4j"],
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
},
{
"name": "Xavier Coureau",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"graphaware/neo4j-php-client": "^4.6.4",
"symfony/framework-bundle": "^2.7 || ^3.0 | ^4.0",
"graphaware/neo4j-bolt": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"symfony/symfony": "^2.7 || ^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.0"
},
"suggest": {
"graphaware/neo4j-php-ogm": "To have EntityManager support"
},
"autoload": {
"psr-4": {
"Neo4j\\Neo4jBundle\\": ""
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"minimum-stability": "beta"
}