This repository was archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.64 KB
/
Copy pathcomposer.json
File metadata and controls
86 lines (86 loc) · 2.64 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dbp/relay-auth-bundle",
"description": "Authentification bundle for the Relay API gateway",
"type": "symfony-bundle",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-mbstring": "*",
"dbp/relay-core-bundle": "^0.1.148",
"guzzlehttp/guzzle": "^7.0",
"kevinrob/guzzle-cache-middleware": "^3.3 || ^4.0 || ^5.0",
"psr/log": "^1.1.4 || ^2.0 || ^3.0",
"symfony/cache": "^5.4 || ^6.4",
"symfony/cache-contracts": "^2.5 || ^3.0",
"symfony/clock": "^5.4 || ^6.4",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/framework-bundle": "^5.4 || ^6.4",
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/security-core": "^5.4 || ^6.4",
"symfony/security-http": "^5.4 || ^6.4",
"symfony/yaml": "^5.4 || ^6.4",
"web-token/jwt-library": "^3.3"
},
"require-dev": {
"captainhook/captainhook": "^5.21.2",
"friendsofphp/php-cs-fixer": "^3.51",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-symfony": "^1.3.8",
"phpunit/phpunit": "^10.1",
"symfony/browser-kit": "^5.4 || ^6.4",
"symfony/http-client": "^5.4 || ^6.4",
"symfony/phpunit-bridge": "^7.0",
"vimeo/psalm": "^5.22.2"
},
"autoload": {
"psr-4": {
"Dbp\\Relay\\AuthBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dbp\\Relay\\AuthBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-autoload-dump": "vendor/bin/captainhook install -f -s",
"test": [
"@php vendor/bin/phpunit"
],
"phpstan": [
"@php vendor/bin/phpstan analyze --ansi"
],
"psalm": [
"@php vendor/bin/psalm"
],
"lint": [
"@composer run cs",
"@composer run phpstan",
"@composer run psalm"
],
"cs-fix": [
"@php vendor/bin/php-cs-fixer --ansi fix"
],
"cs": [
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff"
],
"coverage": [
"@php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html _coverage"
]
}
}