-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
59 lines (59 loc) · 1.51 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
55
56
57
58
59
{
"name": "nextras/dbal",
"type": "library",
"description": "Nextras database abstraction layer",
"keywords": ["database", "nextras", "dbal"],
"homepage": "https://github.com/nextras/dbal",
"license": "MIT",
"authors": [
{ "name": "Nextras Project", "homepage": "https://github.com/nextras/dbal/graphs/contributors" }
],
"support": {
"issues": "https://github.com/nextras/dbal/issues"
},
"require": {
"php": ">=8.1",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "~1.5",
"nette/tester": "~2.4",
"nette/caching": "~3.0",
"nette/di": "~3.0",
"nette/utils": "~3.0 || ~4.0",
"nette/finder": "~2.5 || ~3.0",
"nette/neon": "~3.0",
"nextras/multi-query-parser": "~1.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.0.1",
"phpstan/phpstan-deprecation-rules": "2.0.0",
"phpstan/phpstan-strict-rules": "2.0.0",
"symfony/config": "~4.4 || ~5.0",
"symfony/dependency-injection": "~4.4 || ~5.0",
"symfony/http-kernel": "~4.4 || ~5.0",
"tracy/tracy": "~2.7"
},
"suggest": {
"nextras/multi-query-parser": "Install this to support SQL file import."
},
"autoload": {
"psr-4": { "Nextras\\Dbal\\": "src/" }
},
"autoload-dev": {
"classmap": ["tests/inc/"]
},
"scripts": {
"phpstan": "phpstan analyze -c .phpstan.neon --memory-limit=512M",
"tests": "tester -C --colors 1 --setup ./tests/inc/setup.php ./tests/cases"
},
"extra": {
"branch-alias": {
"dev-main": "5.0-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}