-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "phauthentic/correlation-id-symfony-bundle",
"type": "library",
"require": {
"phauthentic/correlation-id": "^2.0",
"symfony/http-kernel": "^6.0||^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5.15",
"squizlabs/php_codesniffer": "^3.9",
"symfony/config": "^6.0||^7.0",
"symfony/dependency-injection": "^6.0||^7.0",
"symfony/messenger": "^6.0||^7.0",
"symfony/phpunit-bridge": "^6.0||^7.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Phauthentic\\CorrelationIdBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\CorrelationIdBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"bin-dir": "bin"
},
"scripts": {
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --coverage-tex",
"stan": "phpstan"
}
}