-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "lightsaml/symfony-bridge",
"license": "MIT",
"type": "symfony-bundle",
"description": "Light SAML Symfony bridge bundle",
"homepage": "http://www.lightsaml.com",
"authors": [
{
"name": "Milos Tomic",
"email": "tmilos@gmail.com",
"homepage": "http://github.com/tmilos",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"LightSaml\\SymfonyBridgeBundle\\Tests\\": "tests/",
"LightSaml\\SymfonyBridgeBundle\\": "src/"
}
},
"require": {
"php": ">=7.4",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.0",
"symfony/yaml": "^5.4|^6.4|^7.0",
"litesaml/lightsaml": "^4.0"
},
"require-dev": {
"symfony/browser-kit": "^5.0|^6.0",
"symfony/finder": "^5.0|^6.0",
"symfony/filesystem": "^5.0|^6.0",
"symfony/routing": "^5.0|^6.0",
"phpunit/phpunit": "^8.4|^9.5",
"phpspec/prophecy-phpunit": "^2.0"
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "stable"
}