This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.98 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
{
"name": "phpfastcache/phpfastcache-bundle",
"type" : "symfony-bundle",
"description": "Phpfastcache Bundle for Symfony integration",
"keywords": ["cache", "phpfastcache", "symfony", "php", "bundle"],
"homepage": "http://www.phpfastcache.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Georges.L",
"email": "[email protected]",
"homepage": "https://github.com/Geolim4",
"role": "Developer"
},
{
"name": "PastisD",
"email": "[email protected]",
"homepage": "https://github.com/PastisD",
"role": "Developer"
},
{
"name": "Khoa Bui",
"email": "[email protected]",
"homepage": "http://www.phpfastcache.com",
"role": "Former developer"
}
],
"require": {
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0",
"phpfastcache/phpfastcache": "^7.0",
"php": "^7.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.2 || ^7.1",
"predis/predis": "^1.0",
"symfony/browser-kit": "^3.4 || ^4.0",
"symfony/console": "^3.4 || ^4.0",
"symfony/phpunit-bridge": "^3.4 || ^4.0",
"symfony/profiler-pack": "^1.0",
"symfony/twig-bundle": "^3.4 || ^4.0"
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"suggest": {
"symfony/web-profiler-bundle": "To use the data collector."
},
"autoload": {
"psr-4": { "Phpfastcache\\Bundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Phpfastcache\\Bundle\\Tests\\": "tests/" }
}
}