-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 886 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
36
37
{
"name": "compositephp/db",
"description": "PHP 8.1+ DataMapper and Table Gateway",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Composite PHP",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-pdo": "*",
"psr/simple-cache": "1 - 3",
"compositephp/entity": "^v0.1.11",
"doctrine/dbal": "^3.5"
},
"require-dev": {
"kodus/file-cache": "^2.0",
"phpunit/phpunit": "^10.1",
"phpstan/phpstan": "^1.9",
"phpunit/php-code-coverage": "^10.1"
},
"autoload": {
"psr-4": {
"Composite\\DB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Composite\\DB\\Tests\\": "tests/"
}
}
}