forked from modethirteen/FluentCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 880 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
33
34
35
36
37
{
"name": "modethirteen/fluent-cache",
"description": "A fluent cache builder API for PSR-16 compatible cache components",
"type": "library",
"license": "Apache-2.0",
"authors" : [
{
"name": "James Andrew Vaughn",
"email": "[email protected]",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/modethirteen/FluentCache/issues"
},
"require": {
"php": "~7.4.12",
"psr/event-dispatcher": "^1.0.0",
"psr/simple-cache": "^1.0.1",
"symfony/event-dispatcher-contracts": "^2.2.0",
"ramsey/uuid": "~4.1.1"
},
"require-dev": {
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "~9.4.3"
},
"autoload": {
"psr-4": {
"modethirteen\\FluentCache\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"modethirteen\\FluentCache\\Tests\\": ["tests/"]
}
}
}