This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.94 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
65
66
67
68
69
70
71
{
"name": "dbp/relay-authentic-documents-bundle",
"type": "symfony-bundle",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=7.3",
"ext-fileinfo": "*",
"ext-json": "*",
"api-platform/core": "^2.7.11",
"dbp/relay-base-person-bundle": "^0.2.0",
"dbp/relay-core-bundle": "^0.1.98",
"guzzlehttp/guzzle": "^7.0",
"league/uri": "^6.4",
"symfony/framework-bundle": "^5.4",
"symfony/mailer": "^v5.4",
"symfony/messenger": "^5.4",
"symfony/mime": "^5.4",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.8.5",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-symfony": "^1.2.13",
"phpunit/phpunit": "^9.5.13",
"symfony/browser-kit": "^5.4.3",
"symfony/http-client": "^5.4.3",
"symfony/monolog-bundle": "^3.7.1",
"symfony/phpunit-bridge": "^5.4.3",
"vimeo/psalm": "^4.19"
},
"autoload": {
"psr-4": {
"DBP\\API\\AuthenticDocumentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DBP\\API\\AuthenticDocumentBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"scripts": {
"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"
]
}
}