-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 774 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 774 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
{
"name": "jamesmoss/flywheel",
"description": "A lightweight, flat-file, document database",
"keywords": ["flat", "file", "db", "document"],
"homepage": "http://github.com/jamesmoss/flywheel",
"license": "MIT",
"authors": [
{
"name": "James Moss",
"email": "james@moss.io",
"homepage": "http://moss.io"
}
],
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "1.* || 0.*",
"mustangostang/spyc": "dev-master#eba310c",
"phpunit/phpunit": "7.* || 4.*"
},
"suggest": {
"mustangostang/spyc": "You must install this if you're using the YAML or Markdown formatters."
},
"autoload": {
"psr-0": {
"JamesMoss\\Flywheel\\": ["src/", "test/"]
}
},
"config": {
"sort-packages": true
}
}