-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "dbp/relay-proxy-bundle",
"description": "A template bundle for the Relay API gateway",
"type": "symfony-bundle",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=8.2",
"ext-json": "*",
"api-platform/metadata": "^4.1",
"api-platform/openapi": "^4.1",
"dbp/relay-core-bundle": "^v0.1.209",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/event-dispatcher": "^6.4 || ^7.4",
"symfony/framework-bundle": "^6.4 || ^7.4",
"symfony/http-foundation": "^6.4 || ^7.4",
"symfony/http-kernel": "^6.4 || ^7.4",
"symfony/serializer": "^6.4 || ^7.4"
},
"require-dev": {
"api-platform/symfony": "^4.1",
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.0",
"phpstan/phpstan-symfony": "^2.0.0",
"phpunit/phpunit": "^11.0",
"symfony/browser-kit": "^6.4 || ^7.4",
"symfony/http-client": "^6.4 || ^7.4",
"symfony/monolog-bundle": "^3.10 || ^4.0",
"symfony/phpunit-bridge": "^6.4 || ^7.4",
"symfony/runtime": "^6.4 || ^7.4"
},
"autoload": {
"psr-4": {
"Dbp\\Relay\\ProxyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dbp\\Relay\\ProxyBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/runtime": true
}
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
],
"phpstan": [
"@php vendor/bin/phpstan analyze --ansi"
],
"lint": [
"@composer run cs",
"@composer run phpstan"
],
"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"
]
}
}