-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 927 Bytes
/
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": "jrsaunders/shard-matrix",
"description": "A Complete Database Sharding system for MYSQL and/or Postgres. Using Laravels Query Builder easily scale up your application. Configure your whole solution in one Yaml Config file.",
"license": "MIT",
"keywords": [
"shards",
"sharding",
"node",
"nodes",
"uuid",
"database",
"mysql",
"postgres",
"pgsql",
"gothreaded",
"asynchronous",
"laravel",
"eloquent",
"yaml config"
],
"authors": [
{
"name": "John Saunders",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"symfony/yaml": "^5.0",
"ramsey/uuid": "^4.0",
"laravel/framework": "7.13",
"doctrine/dbal": "^2.10",
"predis/predis": "^1.1",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"ShardMatrix\\": "src/"
}
}
}