-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
45 lines (45 loc) · 1.14 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
{
"name": "rikudou/psr6-dynamo-db",
"description": "PSR-6 and PSR-16 cache implementation using AWS DynamoDB",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"psr/cache": "^2.0 | ^3.0",
"php": "^8.0",
"rikudou/clock": "^1.0",
"psr/simple-cache": "^1.0",
"async-aws/dynamo-db": "^1.0"
},
"autoload": {
"psr-4": {
"Rikudou\\DynamoDbCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rikudou\\Tests\\DynamoDbCache\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.3",
"ext-json": "*",
"jetbrains/phpstorm-attributes": "^1.0"
},
"provide": {
"psr/cache-implementation": "1.0",
"psr/simple-cache-implementation": "1.0"
},
"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"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}