-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
46 lines (45 loc) · 1.44 KB
/
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
40
41
42
43
44
45
46
{
"name": "mmamedov/page-cache",
"type": "library",
"description": "PageCache is a lightweight PHP library for full page cache. It uses various strategies to differentiate among separate versions of the same page.",
"keywords": ["cache", "page cache", "caching", "full page cache", "file based cache", "php cache", "php page cache"],
"homepage": "https://github.com/mmamedov/page-cache",
"license": "MIT",
"authors": [
{
"name": "Muhammed Mamedov",
"email": "[email protected]",
"homepage": "http://www.turkmenweb.com/en/",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"psr/simple-cache": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"mobiledetect/mobiledetectlib": "^2.8",
"monolog/monolog": "^1.23",
"mikey179/vfsStream": "^1.6",
"guzzlehttp/guzzle": "^6.3",
"cache/integration-tests": "dev-master",
"symfony/cache": "^3.4 || ^4.0",
"symfony/process": "^3.4 || ^4.0",
"phpunit/phpunit": "^5"
},
"suggest": {
"monolog/monolog": "Allows using monolog for logging",
"mobiledetect/mobiledetectlib": "Allows separate cache versions for mobile pages"
},
"autoload": {
"psr-4": {
"PageCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PageCache\\Tests\\": "tests/"
}
}
}