-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 916 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
{
"name": "somnambulist/cte-builder",
"type": "library",
"description": "Library for programmatically making CTE SQL queries (WITH queries)",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": "*",
"beberlei/assert": "^3.3",
"doctrine/dbal": "^3.0|^4.0",
"somnambulist/collection": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"pagerfanta/pagerfanta": "^4.3",
"somnambulist/domain": "^6.0",
"symfony/var-dumper": "^6.4",
"vimeo/psalm": "^5.22"
},
"autoload": {
"psr-4": {
"Somnambulist\\Components\\CTEBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Somnambulist\\Components\\CTEBuilder\\Tests\\": "tests/"
}
},
"suggest": {
"pagerfanta/pagerfanta": "Paginate ExpressionBuilder results"
}
}