-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 874 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 874 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
37
38
39
40
41
{
"name": "simply/database",
"type": "library",
"description": "A minimalistic database abstraction that provides convenience and structure",
"keywords": [
"database",
"abstraction",
"orm",
"framework"
],
"license": "MIT",
"authors": [
{
"name": "Riikka Kalliomäki",
"email": "riikka.kalliomaki@gmail.com",
"homepage": "http://riimu.net"
}
],
"require": {
"php": "^7.2",
"psr/container": "^1.0",
"ext-pdo": "*"
},
"require-dev": {
"simply/container": "^0.3.1",
"phpunit/phpunit": "^7.4",
"riimu/php-cs-fixer-config": "^0.1.1",
"riimu/sami-config": "^0.1.0"
},
"autoload": {
"psr-4": {
"Simply\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Simply\\Database\\": "tests/tests/",
"Simply\\Database\\Test\\": "tests/helpers/"
}
}
}