-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 801 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 801 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
{
"name": "orhanayd/nonedb",
"description": "File-based NoSQL database for PHP - No installation required",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Orhan Aydogdu",
"email": "info@orhanaydogdu.com.tr",
"homepage": "https://www.orhanaydogdu.com.tr"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"rakibtg/sleekdb": "^2.15"
},
"autoload": {
"classmap": ["noneDB.php"]
},
"autoload-dev": {
"psr-4": {
"noneDB\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-verbose": "phpunit --testdox"
},
"config": {
"sort-packages": true
}
}