-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.53 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "auburnite/melketa",
"type": "library",
"description": "a sqlsrv doctrine dbal wrapper, this is to create a DAL(Data Access Layer) over the DBAL before the ORM.",
"license": "MIT",
"authors": [
{
"name": "Jordan Wamser",
"email": "jwamser@redpandacoding.com"
}
],
"suggest": {
"ext-sqlsrv": "Allows connecting to Microsoft SQL Server databases directly.",
"ext-pdo_sqlsrv": "Allows PDO-based connections to Microsoft SQL Server databases."
},
"require": {
"php": ">=8.2",
"doctrine/dbal": "^3.7",
"ext-pdo": "*",
"symfony/console": "^6.4|^7.0",
"ext-readline": "*",
"symfony/dependency-injection": "^6.4|^7.0",
"ext-sqlsrv": "*",
"ext-pdo_sqlsrv": "*"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.6",
"doctrine/dbal": "<3.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Auburnite\\Component\\Malketa\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Auburnite\\Component\\Malketa\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"symfony/var-dumper": "^7.0",
"phpunit/phpunit": "^11.0",
"symfony/maker-bundle": "^1.54"
}
}