-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.23 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
{
"name" : "makinacorpus/query-builder",
"type": "library",
"description": "Driver agnostic SQL query builder.",
"keywords": ["postgresql", "mysql", "symfony", "query-builder", "sql"],
"homepage": "http://github.com/makinacorpus/php-query-builder",
"license": "MIT",
"authors": [
{
"name" : "Pierre RINEAU",
"email" : "[email protected]"
},
{
"name" : "Makina Corpus",
"email" : "[email protected]"
}
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"autoload" : {
"psr-4": {
"MakinaCorpus\\QueryBuilder\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"MakinaCorpus\\QueryBuilder\\Tests\\": "tests"
}
},
"require" : {
"php" : ">=8.1",
"symfony/polyfill-php83": "^1.29"
},
"require-dev" : {
"doctrine/dbal": "^3.7|^4.0",
"friendsofphp/php-cs-fixer": "^3.40",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit" : "^10.3",
"ramsey/uuid": ">=3.8",
"symfony/uid": ">=6.0"
},
"conflict": {
"doctrine/dbal": "<3.7"
}
}