-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
73 lines (73 loc) · 2.69 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
{
"name": "ecphp/cas-bundle",
"description": "A bundle for Symfony, providing authentication against a Central Authentication Service (CAS) server.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"authentication",
"cas",
"central authentication service",
"single sign-on",
"sso"
],
"require": {
"php": ">= 8.1",
"ecphp/cas-lib": "^3",
"loophp/psr-http-message-bridge-bundle": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/framework-bundle": "^6.4 || ^7"
},
"require-dev": {
"ext-pcov": "*",
"ext-xsl": "*",
"ecphp/php-conventions": "^1",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.27",
"infection/phpspec-adapter": "^0.2",
"loophp/unaltered-psr-http-message-bridge-bundle": "^2.0",
"nyholm/psr7": "^1.8",
"phpspec/phpspec": "^7",
"phpstan/phpstan-symfony": "^1.1",
"symfony/cache": "^6.4 || ^7",
"symfony/dependency-injection": "^6.4 || ^7",
"symfony/http-client": "^6.4 || ^7",
"symfony/routing": "^6.4 || ^7",
"symfony/security-bundle": "^6.4 || ^7",
"veewee/xml": "^2.6 || ^3"
},
"suggest": {
"loophp/unaltered-psr-http-message-bridge-bundle": "A drop-in replacement for symfony/psr-http-message-bridge, that does not alter query parameters.",
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation",
"nyholm/psr7-server": "For a PSR-7 implementation of Server Requests.",
"symfony/cache": "For a cache implementation (PSR-6).",
"symfony/http-client": "For an HTTP client implementation (PSR-18).",
"symfony/monolog-bundle": "For a logger implementation (PSR-3).",
"veewee/xml": "If you plan to use CAS XML response, you must require this package."
},
"autoload": {
"psr-4": {
"EcPhp\\CasBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EcPhp\\CasBundle\\": "./spec/EcPhp/CasBundle/"
}
},
"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",
"phpspec": "./vendor/bin/phpspec run"
}
}