-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
31 lines (31 loc) · 921 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
{
"name": "madewithlove/illuminate-psr-cache-bridge",
"type": "library",
"license": "MIT",
"keywords": ["Laravel", "cache", "PSR-6", "adapter", "bridge", "implementation"],
"require": {
"php": ">=5.6.0",
"illuminate/contracts": "^5.0",
"psr/cache": "^1.0"
},
"require-dev": {
"illuminate/cache": "^5.0",
"phpunit/phpunit": "^7.0",
"cache/integration-tests": "dev-master",
"symfony/phpunit-bridge": "^5.0"
},
"provide": {
"psr/cache-implementation": "1.0.0"
},
"autoload": {
"psr-4": {
"Madewithlove\\IlluminatePsrCacheBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Madewithlove\\IlluminatePsrCacheBridge\\Tests\\Integration\\": "tests/integration/",
"Madewithlove\\IlluminatePsrCacheBridge\\Tests\\Unit\\": "tests/unit/"
}
}
}