forked from sonrac/larango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 799 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 799 Bytes
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
{
"name": "sonrac/larango",
"description": "Arango Adapter for lumen & laravel",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^6.4",
"mockery/mockery": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Donii Sergii",
"email": "doniysa@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"triagens/arangodb": "^3.2",
"illuminate/support": "^5.5",
"illuminate/container": "^5.5",
"illuminate/database": "^5.5",
"illuminate/events": "^5.5"
},
"autoload": {
"psr-4": {
"sonrac\\Arango\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"sonrac\\Arango\\tests\\": "tests"
}
}
}