-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·51 lines (51 loc) · 1.5 KB
/
composer.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.5 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
50
51
{
"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 -c phpstan.neon",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"require": {
"php": ">=8.4",
"utopia-php/telemetry": "*"
},
"require-dev": {
"phpunit/phpunit": "11.*",
"laravel/pint": "1.*",
"phpstan/phpstan": "1.*",
"swoole/ide-helper": "6.*"
},
"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",
"ext-swoole" : "Needed to support Swoole based pool adapter"
},
"config": {
"platform": {
"php": "8.4"
},
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
}
}
}