-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.41 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"name": "friendsofcat/laravel-couchbase",
"description": "A Couchbase based Eloquent model and Query builder for Laravel",
"keywords": ["laravel","eloquent","couchbase","database","model"],
"homepage": "https://github.com/friendsoat/laravel-couchbase",
"license" : "MIT",
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/container": "^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0",
"illuminate/events": "^7.0|^8.0|^9.0|^10.0",
"ext-couchbase": ">=3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3.3",
"orchestra/testbench": "^6.2|^7.0",
"mockery/mockery": "^1.4.2",
"ext-json": "*",
"vlucas/phpdotenv": "^5.3"
},
"autoload": {
"psr-4": {
"FriendsOfCat\\": "src/FriendsOfCat/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"FriendsOfCat\\Couchbase\\CouchbaseServiceProvider"
]
}
},
"scripts": {
"check-style": "php-cs-fixer fix --dry-run",
"fix-style": "php-cs-fixer fix",
"test": "./vendor/bin/phpunit"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}