-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.2 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
{
"name": "ecphp/cas-lib-demo",
"description": "Simple and light application where the CAS authentication against EU Login is enabled.",
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"ecphp/cas-lib": "^3.0",
"ecphp/ecas": "^4.0",
"loophp/psr17": "^1.0",
"middlewares/debugbar": "^2.1",
"monolog/monolog": "^2.9",
"nyholm/psr7": "^1",
"nyholm/psr7-server": "^1.0",
"php-di/slim-bridge": "^3.3",
"psr7-sessions/storageless": "^9",
"slim/slim": "^4.0",
"slim/twig-view": "^3.3",
"symfony/cache": "^6.2",
"symfony/http-client": "^6.2",
"webclient/ext-log": "^1.0",
"zeuxisoo/slim-whoops": "^0.7.3"
},
"require-dev": {
"drupol/php-conventions": "^5.1",
"symfony/var-dumper": "^6.3"
},
"autoload": {
"psr-4": {
"EcPhp\\CasLibDemo\\": "./src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"phpro/grumphp": false,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"serve": "php -S 127.0.0.1:8000 -t public"
}
}