-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "developermarshak/laravel-couchbase",
"description": "A Couchbase based Eloquent model and Query builder for Laravel",
"keywords": ["laravel","eloquent","couchbase","database","model"],
"homepage": "https://github.com/ORT-Interactive-GmbH/laravel-couchbase",
"authors": [
],
"license" : "MIT",
"require": {
"php": "^7.0",
"illuminate/support": "^5.5",
"illuminate/container": "^5.5",
"illuminate/database": "^5.5",
"illuminate/console": "^5.5",
"illuminate/events": "^5.5",
"ext-couchbase": ">=2.2.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.5.0",
"mockery/mockery": "^0.9"
},
"autoload": {
"psr-0": {
"Mpociot\\Couchbase": "src/",
"Mpociot\\Eloquent": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/BaseTestCase.php",
"tests/TestCase.php",
"tests/models",
"tests/seeds"
]
}
}