forked from spiritix/lada-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.29 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
{
"name": "spiritix/lada-cache",
"type": "library",
"description": "A Redis based, automated and scalable database caching layer for Laravel 5.1+",
"license": "MIT",
"keywords": ["php","laravel","cache","caching","redis","database","eloquent","model"],
"authors": [
{
"name": "Matthias Isler",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1",
"illuminate/database": "~5.1",
"illuminate/redis": "~5.1",
"predis/predis": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"codeclimate/php-test-reporter": "dev-master",
"orchestra/testbench": "~3.0",
"laracasts/TestDummy": "~2.3"
},
"suggest": {
"ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
"barryvdh/laravel-debugbar": "Provides debug information about the cache"
},
"autoload": {
"psr-4": {
"Spiritix\\LadaCache\\": "src/Spiritix/LadaCache/"
}
},
"autoload-dev": {
"psr-4": {
"Spiritix\\LadaCache\\Tests\\": "tests/",
"Spiritix\\LadaCache\\Tests\\Database\\": "database/"
}
},
"minimum-stability": "stable"
}