-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.57 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
63
64
{
"name": "conejerock/idempotency-bundle",
"description": "Check idempotency keys in headers/body/query requests",
"license": "MIT",
"version": "1.0.5",
"authors": [
{
"name": "Juanjo Conejero",
"email": "juanjoconejero@gmail.com"
}
],
"homepage": "https://github.com/conejerock/idempotency-bundle",
"keywords": [
"Symfony",
"bundle",
"idempotency",
"cached",
"requests",
"symfony-bundle"
],
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "5.0.*",
"symfony/yaml": "^5.0",
"matthiasnoback/symfony-config-test": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"pestphp/pest": "^1.23",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Conejerock\\IdempotencyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Conejerock\\IdempotencyBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"symfony/flex": true
}
},
"scripts": {
"test": [
"./vendor/bin/pest ./tests"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}