-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.09 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.09 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
{
"name": "initorm/database",
"description": "Database manager that composes initorm/dbal and initorm/query-builder into a fluent CRUD + transaction + query-log API with an optional static facade.",
"type": "library",
"license": "MIT",
"keywords": [
"database",
"crud",
"transaction",
"query-builder",
"dbal",
"pdo",
"mysql",
"pgsql",
"sqlite",
"initorm"
],
"homepage": "https://github.com/InitORM/Database",
"support": {
"issues": "https://github.com/InitORM/Database/issues",
"source": "https://github.com/InitORM/Database",
"docs": "https://github.com/InitORM/Database/tree/master/docs"
},
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"homepage": "https://www.muhammetsafak.com.tr",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-pdo": "*",
"initorm/dbal": "^2.0",
"initorm/query-builder": "^2.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.12"
},
"suggest": {
"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\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitORM\\Database\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=build/coverage",
"cs": "phpcs",
"cs-ci": "phpcs --warning-severity=0",
"cs-fix": "phpcbf",
"stan": "phpstan analyse",
"qa": [
"@cs-ci",
"@stan",
"@test"
]
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}