-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.6 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
{
"name": "ecphp/eu-login-bundle",
"description": "A bundle for Symfony, providing authentication against European Commission authentication service.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"authentication",
"cas",
"central authentication service",
"eulogin",
"european commission",
"single sign-on",
"sso"
],
"require": {
"php": ">= 8.1",
"ext-json": "*",
"ecphp/cas-bundle": "^3",
"ecphp/ecas": "^4",
"symfony/framework-bundle": "^6.4 || ^7"
},
"require-dev": {
"ext-pcov": "*",
"ecphp/php-conventions": "^1",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.27",
"infection/phpspec-adapter": "^0.2",
"nyholm/psr7": "^1.8",
"phpspec/phpspec": "^7",
"symfony/http-client": "^6.1",
"symfony/security-bundle": "^6.1",
"symfony/security-core": "^6.1"
},
"autoload": {
"psr-4": {
"EcPhp\\EuLoginBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run"
}
}