-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 1.25 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
{
"name": "utopia-php/pools",
"description": "A simple library to manage connection pools",
"type": "library",
"keywords": ["php","framework", "utopia", "pools"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Team Appwrite",
"email": "team@appwrite.io"
}
],
"autoload": {
"psr-4": {"Utopia\\Pools\\": "src/Pools"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\": "tests/Pools"}
},
"scripts": {
"lint": "./vendor/bin/pint --preset psr12 --test",
"format": "./vendor/bin/pint --preset psr12",
"check": "./vendor/bin/phpstan analyse --level max src tests",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "11.*",
"laravel/pint": "1.*",
"phpstan/phpstan": "1.*"
},
"suggests": {
"ext-mongodb": "Needed to support MongoDB database pools",
"ext-redis": "Needed to support Redis cache pools",
"ext-pdo": "Needed to support MariaDB, MySQL or SQLite database pools"
},
"config": {
"platform": {
"php": "8.3"
}
}
}