-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.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
65
66
67
68
69
70
{
"name": "ecphp/eu-login-api-authentication-bundle",
"description": "EU Login API Authentication Bundle, authenticate requests from European Commission corporate service 'EU Login' using OpenID Connect protocol.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"authentication",
"jwt",
"EU Login"
],
"require": {
"php": ">= 7.4",
"ext-json": "*",
"facile-it/php-jose-verifier": "^0.3",
"facile-it/php-openid-client": "^0.3",
"firebase/php-jwt": "^6",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1.0",
"symfony/dependency-injection": "^5.4 || ^6",
"symfony/framework-bundle": "^5.4 || ^6",
"symfony/psr-http-message-bridge": "^2.1",
"web-token/jwt-signature-algorithm-ecdsa": "^2 || ^3.0",
"web-token/jwt-signature-algorithm-hmac": "^2 || ^3.0"
},
"require-dev": {
"behat/behat": "^3.10",
"ecphp/php-conventions": "^1",
"friends-of-behat/mink": "^1.9",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"friends-of-behat/mink-extension": "^2.5",
"friends-of-behat/symfony-extension": "^2.2",
"nyholm/psr7": "^1",
"phpstan/phpstan-symfony": "^1.2",
"psalm/plugin-symfony": "^5.0",
"soyuka/contexts": "^3.3",
"symfony/config": "^5.4 || ^6",
"symfony/http-client": "^5.4 || ^6",
"symfony/monolog-bundle": "^3.7",
"symfony/security-bundle": "^5.4 || ^6"
},
"autoload": {
"psr-4": {
"EcPhp\\EuLoginApiAuthenticationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EcPhp\\EuLoginApiAuthenticationBundle\\": "./spec/EcPhp/EuLoginApiAuthenticationBundle/",
"tests\\EcPhp\\EuLoginApiAuthenticationBundle\\": "./tests/src"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}