-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
31 lines (31 loc) · 859 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": "divineomega/do-file-cache",
"type": "library",
"description": "DO File Cache is a PHP File-based Caching Library. Its syntax is designed to closely resemble the PHP memcache extension.",
"keywords": ["cache", "caching", "file cache", "caching library", "library", "php"],
"license": "LGPL-3.0-only",
"require": {
"php": ">=7.1",
"ext-zlib": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"DivineOmega\\DOFileCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\DOFileCache\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}