forked from ytake/Laravel-Couchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 1.87 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ytake/laravel-couchbase",
"description": "Couchbase providers for Laravel",
"keywords": [
"laravel",
"couchbase",
"database",
"session",
"cache",
"queue"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"ext-couchbase": ">=2.3.2",
"illuminate/support": "5.6.*",
"illuminate/config": "5.6.*",
"illuminate/console": "5.6.*",
"illuminate/events": "5.6.*",
"illuminate/cache": "5.6.*",
"illuminate/session": "5.6.*",
"illuminate/database": "5.6.*",
"illuminate/encryption": "5.6.*",
"illuminate/queue": "5.6.*",
"illuminate/contracts": "5.6.*",
"illuminate/container": "5.6.*"
},
"require-dev": {
"symfony/framework-bundle": "^4.0",
"symfony/console": "^4.0",
"phpunit/phpunit": "^6.0",
"satooshi/php-coveralls": "*",
"phploc/phploc": "*",
"pdepend/pdepend" : "^2.2.4",
"phpmd/phpmd": "@stable",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
"Ytake\\LaravelCouchbase\\": "src"
},
"files": [
"src/transfer.php"
]
},
"autoload-dev": {
"classmap": [
"tests/CouchbaseTestCase.php",
"tests/MockApplication.php"
]
},
"scripts": {
"test": [
"php vendor/bin/phpunit"
],
"cs": [
"php vendor/bin/php-cs-fixer fix"
],
"scrutinizer_test": [
"php vendor/bin/phpunit --coverage-clover=coverage.clover",
"wget https://scrutinizer-ci.com/ocular.phar",
"php ocular.phar code-coverage:upload --format=php-clover coverage.clover"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Ytake\\LaravelCouchbase\\CouchbaseServiceProvider",
"Ytake\\LaravelCouchbase\\ConsoleServiceProvider"
]
}
}
}