-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.55 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
{
"name": "danskernesdigitalebibliotek/agency-auth-bundle",
"license": "AGPL-3.0-only",
"type": "symfony-bundle",
"description": "Agency authentication against the Open Platform",
"autoload": {
"psr-4": {
"DanskernesDigitaleBibliotek\\AgencyAuthBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DanskernesDigitaleBibliotek\\AgencyAuthBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"symfony/cache": "^6.0",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-client": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/security-core": "^6.0",
"symfony/security-http": "^6.0"
},
"require-dev": {
"drenso/phan-extensions": "^3.1",
"friendsofphp/php-cs-fixer": "^3.8",
"symfony/phpunit-bridge": "^6.0",
"vimeo/psalm": "^4.8"
},
"scripts": {
"coding-standards-apply": [
"php-cs-fixer fix"
],
"coding-standards-check": [
"php-cs-fixer fix --dry-run --format=checkstyle"
],
"phan": [
"./vendor/bin/phan --allow-polyfill-parser"
],
"phpunit": [
"./vendor/bin/simple-phpunit"
],
"test-suite": [
"@phpunit"
],
"actions/phpcsfixer": [
"php-cs-fixer fix --dry-run --format=checkstyle"
],
"actions/phan": [
"./vendor/bin/phan --no-progress-bar --allow-polyfill-parser"
]
}
}