forked from ihipop/PSR-NullCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 890 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
{
"name": "valgorithms/psr-null-cache",
"type": "library",
"homepage": "https://github.com/valgorithms/PSR-NullCache",
"description": "NullCache implementation (Fake Storage) of PSR-16 and ReactPHP with Basic data validation",
"license": "LGPL-3.0+",
"authors": [
{
"name": "ihipop",
"email": "ihipop@gmail.com"
},
{
"name": "Valithor Obisdion",
"email": "valithor@valgorithms.com"
}
],
"require": {
"php": "^8.0",
"psr/simple-cache": "^1.0",
"psr/cache": "^1.0",
"react/cache": "^0.5 || ^0.6 || ^1.0"
},
"provide": {
"psr/simple-cache-implementation": "1.0"
},
"autoload": {
"psr-4": {
"ihipop\\PsrNullCache\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.4.4"
}
}