-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.09 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
{
"name": "appsero/laravel-datastore",
"version": "0.0.6",
"description": "A package for using google datastore as a database driver.",
"type": "package",
"license": "MIT",
"keywords": [
"laravel datastore",
"datastore",
"google datastore"
],
"homepage": "https://github.com/appsero/laravel-datastore",
"authors": [
{
"name": "Appsero",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"illuminate/support": "^6|^7|^8|^9.0|^10.0|^11.0",
"illuminate/pagination": "^6|^7|^8|^9.0|^10.0|^11.0",
"illuminate/database": "^6|^7|^8|^9.0|^10.0|^11.0",
"illuminate/http": "^6|^7|^8|^9.0|^10.0|^11.0",
"google/cloud-datastore": "1.12"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Appsero\\LaravelDatastore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Appsero\\LaravelDatastore\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Appsero\\LaravelDatastore\\DatastoreServiceProvider"
]
}
}
}