-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.24 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
47
48
49
50
{
"description": "local file database",
"keywords": [
"bazzline",
"psr",
"psr-4",
"repository",
"uuid",
"php",
"php56",
"php7",
"local",
"file",
"database"
],
"license": "LGPL-3.0-or-late",
"name": "net_bazzline/php_component_database_file_storage",
"type": "library",
"authors": [
{
"email": "artodeto@bazzline.net",
"homepage": "https://artodeto.bazzline.et",
"name": "Stev Leibelt",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"net_bazzline/component_lock": "2.1.*",
"net_bazzline/php_component_csv": "1.9.*",
"net_bazzline/php_component_toolbox": "1.9.*",
"php": "^5.6||^7.0",
"ramsey/uuid": "3.3.*"
},
"require-dev": {
"mikey179/vfsstream": "1.6.*",
"mockery/mockery": ">=0.9.4",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Net\\Bazzline\\Component\\Database\\FileStorage\\": "source/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Net\\Bazzline\\Component\\Database\\FileStorage\\": "test/"
}
}
}