forked from rinvex/laravel-cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "rinvex/cacheable",
"description": "Rinvex Cacheable is a granular, intuitive, and fluent caching system for eloquent models. Simple, but yet powerful, plug-n-play with no hassle.",
"keywords": [
"trait",
"model",
"laravel",
"eloquent",
"intuitive",
"cacheable",
"granular",
"rinvex",
"fluent",
"query",
"cache"
],
"license": "MIT",
"homepage": "https://rinvex.com",
"support": {
"email": "help@rinvex.com",
"issues": "https://github.com/rinvex/cacheable/issues",
"source": "https://github.com/rinvex/cacheable",
"docs": "https://github.com/rinvex/cacheable/blob/master/README.md"
},
"authors": [
{
"name": "Rinvex LLC",
"homepage": "https://rinvex.com",
"email": "help@rinvex.com"
},
{
"name": "Abdelrahman Omran",
"homepage": "https://omranic.com",
"email": "me@omranic.com",
"role": "Project Lead"
},
{
"name": "The Generous Laravel Community",
"homepage": "https://github.com/rinvex/cacheable/contributors"
}
],
"require": {
"php": "^7.0.0",
"illuminate/cache": "~5.5.0",
"illuminate/database": "~5.5.0",
"illuminate/contracts": "~5.5.0"
},
"require-dev": {
"illuminate/container": "~5.5.0"
},
"autoload": {
"psr-4": {
"Rinvex\\Cacheable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rinvex\\Cacheable\\Test\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}