-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 938 Bytes
/
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
{
"name": "gowork/dqo",
"description": "Database Query Objects",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2",
"doctrine/dbal": "^4.0",
"gowork/values": "^0.6",
"gowork/safe": "^0.2",
"symfony/console": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/config": "^6.0|^7.0",
"symfony/process": "^6.0|^7.0",
"phpdocumentor/reflection-docblock": "^5.2",
"open-serializer/type": "^0.1",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan-strict-rules": "^1.4"
},
"autoload": {
"psr-4": {
"GW\\DQO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\GW\\DQO\\": "tests/"
}
}
}