-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·54 lines (54 loc) · 1.33 KB
/
composer.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.33 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
52
53
54
{
"name": "faster-php/db",
"description": "A drop-in replacement for PDO with connection pooling, lazy connect, auto-reconnect, and prepared statement caching.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcus Don",
"email": "marcus@fasterphp.com"
}
],
"homepage": "https://github.com/FasterPHP/db",
"support": {
"issues": "https://github.com/FasterPHP/db/issues",
"source": "https://github.com/FasterPHP/db"
},
"keywords": [
"pdo",
"database",
"wrapper",
"reconnect",
"lazy",
"mysql",
"connection-pool",
"statement-cache"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-pdo": "*",
"psr/log": "^3.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpunit/phpunit": "^11.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"FasterPhp\\Db\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FasterPhp\\Db\\": "tests/"
}
}
}