forked from Vinelab/NeoEloquent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (39 loc) · 1.01 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
{
"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": "abed.halawi@vinelab.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*",
"illuminate/database": "4.2.*",
"everyman/neo4jphp": "dev-master",
"symfony/console": "2.5.*",
"illuminate/console": "4.2.*",
"nesbot/carbon": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"mockery/mockery": "0.9.*"
},
"repositories": [
],
"autoload": {
"classmap": [
"tests/TestCase.php"
],
"psr-0": {
"Vinelab\\NeoEloquent\\": "src/"
},
"files": [
"src/Vinelab/NeoEloquent/helpers.php"
]
},
"minimum-stability": "stable"
}