-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kraken/vc4sm-bundle",
"type": "symfony-bundle",
"license": "AGPL-3.0-or-later",
"require": {
"php": "^7.3",
"ext-json": "*",
"dbp/relay-core-bundle": "^0.1.10",
"dbp/relay-keycloak-bundle": "^0.1.1",
"symfony/framework-bundle": "^5.2",
"symfony/http-client": "^5.4",
"mattbasta/itsdangerous-php": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpunit/phpunit": "^9.5.19",
"phpunit/php-code-coverage": "^9.2.15",
"symfony/phpunit-bridge": "^5.2",
"vimeo/psalm": "^4.2.1"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:krakenh2020/EduPilotBackendBundle.git"
},
{
"type": "vcs",
"url": "[email protected]:mattbasta/itsdangerous-php.git"
}
],
"autoload": {
"psr-4": {
"VC4SM\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VC4SM\\Bundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"scripts": {
"test": [
"@php vendor/bin/simple-phpunit"
],
"test_with_clover": [
"@php vendor/bin/simple-phpunit --log-junit 'build/unitreport.xml' --coverage-clover 'build/clover.xml'"
],
"phpstan": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@php vendor/bin/phpstan analyze --ansi"
],
"psalm": [
"@php vendor/bin/simple-phpunit --atleast-version 0",
"@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"
],
"php-cs-fixer": [
"php-cs-fixer --rules=@PSR1"
],
"coverage": [
"@php vendor/bin/simple-phpunit --coverage-html _coverage"
]
}
}