forked from RikudouSage/DynamoDbCachePsr6Bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 964 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
32
33
34
35
{
"name": "rikudou/psr6-dynamo-db-bundle",
"type": "symfony-bundle",
"description": "PSR-6 and PSR-16 cache implementation using AWS DynamoDB for Symfony",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"symfony/framework-bundle": "^4.4 | ^5.0",
"rikudou/psr6-dynamo-db": "^2.0",
"php": "^7.2 | ^8.0 | ^8.1",
"symfony/cache": "^4.4 | ^5.0 | ^6.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Rikudou\\DynamoDbCacheBundle\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.44",
"phpunit/phpunit": "^9.3"
},
"autoload-dev": {
"psr-4": {
"Rikudou\\Tests\\DynamoDbCacheBundle\\": "tests/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix src --verbose",
"phpstan": "phpstan analyse --level max src",
"phpunit": "phpunit",
"test": "composer fixer -- --dry-run && composer phpstan && composer phpunit"
}
}