-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.26 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
49
50
51
52
53
54
{
"name": "eufony/dbal",
"description": "Zero-configuration extensible PHP database abstraction layer library.",
"keywords": [ "eufony", "dbal", "sql" ],
"type": "library",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Alpin H. Gencer",
"email": "ah@gencer.us"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-pdo": "*",
"eufony/cache": "^1.0",
"eufony/log": "^0.1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"eufony/dbal-driver-implementation": "Virtual package for database driver implementations."
},
"provide": {
"eufony/dbal-driver-implemtation": "self.version"
},
"autoload": {
"psr-4": {
"Eufony\\DBAL\\": [ "src/Exception/", "src/" ]
}
},
"autoload-dev": {
"psr-4": {
"Eufony\\DBAL\\Tests\\": [ "tests/" ]
}
},
"scripts": {
"test": [
"phpunit -c tests/Unit/phpunit.xml.dist",
"phpunit -c tests/Integration/phpunit.xml.dist"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}