forked from jamesmoss/flywheel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 736 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 736 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
{
"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.2.0",
"mockery/mockery": "dev-master@dev",
"phpunit/phpunit": "3.7.*",
"mustangostang/spyc": "0.5.*@dev"
},
"suggest": {
"mustangostang/spyc": "You must install this if you're using the YAML or Markdown formatters."
},
"autoload": {
"psr-0": {
"JamesMoss\\Flywheel\\": ["src/", "test/"]
}
}
}