-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "tystr/redis-orm",
"type": "library",
"description": "A simple PHP object mapper to assist in persisting objects in Redis and indexing them for efficient searching and filtering.",
"keywords" : [ "redis", "orm", "redis-orm", "key", "value"],
"require": {
"predis/predis": "~1.0",
"doctrine/annotations": "~1.2",
"symfony/config": "~2.5",
"doctrine/collections": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"fzaninotto/faker": "1.5.*@dev",
"behat/behat": "~3.0.6"
},
"autoload": {
"psr-4": { "Tystr\\RedisOrm\\": "src/Tystr/RedisOrm" }
},
"autoload-dev": {
"files": [ "vendor/phpunit/phpunit/src/Framework/Assert/Functions.php" ]
},
"license": "MIT",
"authors": [
{
"name": "Tyler Stroud",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}