-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (38 loc) · 1.07 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
{
"name": "darrynten/any-cache",
"description": "Adapter designed to add Framework Agnosticism for Caching within PHP Packages.",
"type": "library",
"keywords": [
"cache",
"adapter",
"framework agnostic"
],
"homepage": "https://github.com/darrynten/any-cache",
"license": "MIT",
"require": {
"php": "^5.5.9 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "dev-master",
"doctrine/cache": "^1.6",
"symfony/cache": "~3.0",
"symfony/dependency-injection": "~2.8|~3.0",
"symfony/http-kernel": "~2.8|~3.0",
"illuminate/contracts": "^5.4",
"illuminate/cache": "^5.4"
},
"suggest": {
"doctrine/cache": "Use any Doctrine cache driver for cache",
"symfony/cache": "Use any Symfony cache driver for cache"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"DarrynTen\\AnyCache\\": "src/"
},
"exclude-from-classmap": ["/Tests/", "/tests/"]
}
}