-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcomposer.json
68 lines (68 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "desarrolla2/cache",
"description": "Provides an cache interface for several adapters Apc, Apcu, File, Mongo, Memcache, Memcached, Mysql, Mongo, Redis is supported.",
"keywords": [
"cache",
"simple-cache",
"psr-16",
"apc",
"apcu",
"file",
"memcached",
"memcache",
"mysql",
"mongo",
"redis"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/desarrolla2/Cache/",
"authors": [
{
"name": "Daniel González",
"homepage": "http://desarrolla2.com/"
},
{
"name": "Arnold Daniels",
"homepage": "https://jasny.net/"
}
],
"provide": {
"psr/simple-cache-implementation": "1.0"
},
"require": {
"php": ">=7.2.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"ext-apcu": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-memcached": "*",
"ext-redis": "*",
"predis/predis": "~1.0.0",
"mongodb/mongodb": "^1.3",
"cache/integration-tests": "dev-master",
"phpunit/phpunit": "^8.3 || ^9.0",
"phpstan/phpstan": "^0.12.29",
"symfony/phpunit-bridge": "^5.2",
"mikey179/vfsstream": "v1.6.10"
},
"autoload": {
"psr-4": {
"Desarrolla2\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Desarrolla2\\Test\\Cache\\": "tests/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"phpunit --colors=always",
"phpcs -p src"
]
}
}