-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.81 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": "itk-dev/openid-connect-bundle",
"description": "Symfony bundle for openid-connect",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Jeppe Kuhlmann Andersen",
"email": "[email protected]"
},
{
"name": "Ture Gjørup",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-openssl": "*",
"doctrine/orm": "^2.8|^3.0",
"itk-dev/openid-connect": "^4.0",
"symfony/cache": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4.13|^7.0",
"symfony/security-bundle": "^6.4.13|^7.0",
"symfony/uid": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"escapestudios/symfony2-coding-standard": "^3.12",
"friendsofphp/php-cs-fixer": "^3.11",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"symfony/runtime": "^6.4.13|^7.0"
},
"autoload": {
"psr-4": {
"ItkDev\\OpenIdConnectBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ItkDev\\OpenIdConnectBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"symfony/runtime": true
},
"sort-packages": true
},
"scripts": {
"coding-standards-apply": [
"./vendor/bin/php-cs-fixer fix"
],
"coding-standards-check": [
"./vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle"
],
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit"
}
}