-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.37 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
{
"name": "rekalogika/psr-16-simple-cache-bundle",
"description": "Enables PSR-16 Simple Cache services in Symfony that were previously removed in Symfony 4.3. Just wire in Psr\\SimpleCache\\CacheInterface to use it.",
"homepage": "https://rekalogika.dev/psr-16-simple-cache-bundle",
"keywords": [
"psr-16",
"simple-cache",
"symfony",
"symfony-bundle",
"CacheInterface"
],
"license": "MIT",
"type": "symfony-bundle",
"provide": {
"psr/simple-cache-implementation": "1.0.0"
},
"autoload": {
"psr-4": {
"Rekalogika\\Psr16SimpleCacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rekalogika\\Psr16SimpleCacheBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "priyadi@rekalogika.com"
}
],
"require": {
"psr/simple-cache": "^3.0",
"symfony/cache": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/config": "^6.0 || ^7.0",
"phpstan/phpstan": "^1.12",
"vimeo/psalm": "^5.26",
"psalm/plugin-phpunit": "^0.19.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0"
}
}