forked from php-cache/tag-interop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 922 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
38
39
{
"name": "cache/tag-interop",
"description": "Framework interoperable interfaces for tags",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"psr6",
"tag",
"psr"
],
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]",
"homepage": "https://github.com/nyholm"
},
{
"name": "Nicolas Grekas ",
"email": "[email protected]",
"homepage": "https://github.com/nicolas-grekas"
}
],
"homepage": "https://www.php-cache.com/en/latest/",
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Cache\\TagInterop\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}