-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.03 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
45
46
47
48
{
"name": "clearbooks/labs-mysql",
"description": "DB gateway classes for Labs",
"license": "GPL v2",
"authors": [
{
"name": "Clear Books Engineering Team",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Clearbooks\\LabsMysql\\": [
"src/",
"test/"
]
}
},
"repositories": [
{
"url": "https://github.com/clearbooks/labs.git",
"type": "git"
},
{
"url": "https://github.com/clearbooks/labs-php-client.git",
"type": "git"
},
{
"url": "https://github.com/clearbooks/labs-php-client-mysql.git",
"type": "git"
},
{
"url": "https://github.com/clearbooks/labs-schema.git",
"type": "git"
}
],
"require": {
"php": ">=7.4",
"clearbooks/labs-schema": "^1.1.2",
"clearbooks/labs": "^2.1.0",
"clearbooks/labs-php-client": "^2.1.0",
"clearbooks/labs-php-client-mysql": "^3.2.0",
"doctrine/dbal": "^3.6.3"
},
"require-dev": {
"phpunit/phpunit": "^9.6.9"
}
}