-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·43 lines (43 loc) · 1.1 KB
/
composer.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "utopia-php/mongo",
"description": "A simple library to manage Mongo database",
"type": "library",
"keywords": ["php","mongo", "upf", "utopia", "database"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
},
{
"name": "Wess",
"email": "wess@appwrite.io"
}
],
"autoload": {
"psr-4": {"Utopia\\Mongo\\": "src"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\": "tests"}
},
"scripts":{
"test": "phpunit",
"check": "vendor/bin/phpstan analyse --memory-limit=1G src",
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test"
},
"require": {
"php": ">=8.0",
"ext-mongodb": "2.1.*",
"mongodb/mongodb": "2.1.*",
"ramsey/uuid": "4.9.*"
},
"require-dev": {
"fakerphp/faker": "1.*",
"phpunit/phpunit": "9.*",
"swoole/ide-helper": "5.1.*",
"laravel/pint": "*",
"phpstan/phpstan": "*"
}
}