-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.75 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "senza1dio/database-pool",
"description": "Enterprise-grade database connection pooling for PHP with circuit breaker, auto-scaling, and PostgreSQL/MySQL/SQLite support. Battle-tested at 100k+ concurrent users.",
"type": "library",
"keywords": [
"database",
"connection-pool",
"pdo",
"postgresql",
"mysql",
"sqlite",
"circuit-breaker",
"enterprise",
"high-availability",
"scalability",
"performance"
],
"license": "MIT",
"authors": [
{
"name": "ADOS (AI Developer Orchestration System)",
"email": "senza1dio@gmail.com",
"homepage": "https://github.com/senza1dio"
}
],
"homepage": "https://github.com/senza1dio/database-pool",
"support": {
"issues": "https://github.com/senza1dio/database-pool/issues",
"source": "https://github.com/senza1dio/database-pool"
},
"require": {
"php": "^8.0",
"ext-pdo": "*",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.5"
},
"suggest": {
"ext-redis": "For Redis-based distributed locking (recommended for production at scale)",
"ext-memcached": "For Memcached-based locking (alternative to Redis)",
"ext-sysvsem": "For PHP semaphore-based locking (fallback for single-server)",
"ext-pgsql": "For native PostgreSQL support and better performance",
"ext-mysqli": "For native MySQL support and better performance",
"ext-sqlite3": "For SQLite support (development/testing)",
"monolog/monolog": "For comprehensive logging via PSR-3 interface"
},
"autoload": {
"psr-4": {
"Senza1dio\\DatabasePool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Senza1dio\\DatabasePool\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage --coverage-text",
"phpstan": "phpstan analyse src --level=8",
"cs-fix": "php-cs-fixer fix src",
"cs-check": "php-cs-fixer fix src --dry-run --diff",
"check": [
"@cs-check",
"@phpstan",
"@test"
]
},
"extra": {
"laravel": {
"providers": [
"Senza1dio\\DatabasePool\\Integrations\\Laravel\\DatabasePoolServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true
}