-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 1.18 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
{
"name": "roddy/firestore-eloquent",
"description": "Firestore Eloquent, an object-relational mapper (ORM) that makes it enjoyable to interact with your database. When using Eloquent, each firestore collection has a corresponding \"Model\"/\"Class\" that is used to interact with that collection. In addition to retrieving records from the firestore collection, Eloquent models/classes allow you to insert, update, and delete records from the collection as well.",
"type": "library",
"license": "MIT",
"require": {
"google/cloud-firestore": "*",
"google/cloud-storage": "*",
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Roddy\\FirestoreEloquent\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"authors": [
{
"name": "Alfred Nti",
"email": "[email protected]"
}
],
"extra" : {
"laravel" : {
"providers" : [
"Roddy\\FirestoreEloquent\\Providers\\FModelProvider"
],
"aliases" : {
"FAuth" : "Roddy\\FirestoreEloquent\\Auth\\FAuth"
}
}
}
}