-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 940 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": "^6.0 || ^7.0",
"rikudou/psr6-dynamo-db": "^3.1",
"php": "^8.0",
"symfony/cache": "^6.0 || ^7.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Rikudou\\DynamoDbCacheBundle\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.5"
},
"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"
}
}