forked from Vinelab/NeoEloquent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (35 loc) · 915 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
{
"name": "vinelab/neoeloquent",
"description": "Laravel wrapper for the Neo4j graph database REST interface",
"keywords": ["laravel", "neo4j", "graph", "database", "neoeloquent"],
"license": "MIT",
"authors": [
{
"name": "Abed Halawi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.3.*",
"illuminate/database": "5.3.*",
"illuminate/pagination": "5.3.*",
"heydavid713/neo4jphp": "0.1.*",
"nesbot/carbon": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"mockery/mockery": "0.9.*"
},
"repositories": [
],
"autoload": {
"classmap": [
"tests/TestCase.php"
],
"psr-0": {
"Vinelab\\NeoEloquent\\": "src/"
}
},
"minimum-stability": "stable"
}