forked from websanova/easycache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 894 Bytes
/
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
{
"name": "goyne/easycache",
"type": "package",
"description": "Simple on demand caching extension for Laravel.",
"keywords": ["laravel", "5", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "easycache", "easy-cache", "easy", "cache", "caching", "model", "models", "collection", "collections"],
"homepage": "https://github.com/goyne/easycache",
"license": "MIT",
"authors": [
{
"name": "goyne",
"email": "[email protected]",
"homepage": "https://jlgr.nl"
}
],
"autoload-dev": {
"classmap": [
"tests/EasyCacheTest.php"
]
},
"autoload": {
"psr-4": {
"Websanova\\EasyCache\\": "src/"
}
},
"require": {
"php": ">=5.3.0",
"illuminate/support": "~5"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
}
}