-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.83 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.83 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
{
"name": "initorm/dbal",
"description": "Lightweight PDO-based database abstraction layer with a fluent result mapper.",
"type": "library",
"license": "MIT",
"keywords": [
"dbal",
"database",
"pdo",
"abstraction-layer",
"data-mapper",
"mysql",
"pgsql",
"sqlite",
"initorm"
],
"homepage": "https://github.com/InitORM/DBAL",
"support": {
"issues": "https://github.com/InitORM/DBAL/issues",
"source": "https://github.com/InitORM/DBAL",
"docs": "https://github.com/InitORM/DBAL/tree/master/docs"
},
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"require": {
"php": ">=8.0",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"ext-pdo_sqlite": "*"
},
"suggest": {
"psr/log": "Allows passing any PSR-3 LoggerInterface as the 'log' credential.",
"ext-pdo_mysql": "Required for MySQL/MariaDB connections.",
"ext-pdo_pgsql": "Required for PostgreSQL connections.",
"ext-pdo_sqlite": "Required for SQLite connections."
},
"autoload": {
"psr-4": {
"InitORM\\DBAL\\Connection\\": "src/Connection/",
"InitORM\\DBAL\\DataMapper\\": "src/DataMapper/"
}
},
"autoload-dev": {
"psr-4": {
"InitORM\\DBAL\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=build/coverage"
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}