forked from spiral-modules/database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 756 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 756 Bytes
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
{
"name": "spiral/database",
"type": "library",
"description": "DBAL, schema introspection, migration and pagination",
"license": "MIT",
"authors": [
{
"name": "Anton Titov / Wolfy-J",
"email": "wolfy.jd@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"spiral/core": "^2.7",
"spiral/logger": "^2.7",
"spiral/pagination": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"mockery/mockery": "^1.1",
"spiral/dumper": "^2.7",
"spiral/code-style": "^1.0",
"spiral/tokenizer": "^2.7"
},
"autoload": {
"psr-4": {
"Spiral\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Database\\Tests\\": "tests/Database/"
}
}
}