forked from redelivre/oidc-web-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 820 Bytes
/
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
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/corentingi/OpenID-Connect-PHP"
}
],
"require": {
"php": "^7.0.0",
"silex/silex": "~2.0",
"monolog/monolog": "^1.20",
"twig/twig": "^1.24",
"symfony/form": "^3.1",
"symfony/validator": "^3.1",
"symfony/config": "^3.1",
"symfony/translation": "^3.1",
"symfony/twig-bridge": "^3.1",
"jumbojett/openid-connect-php": "dev-master",
"twbs/bootstrap": "4.0.0-alpha.3"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
},
"autoload": {
"psr-4": {"OIDCWebClient\\": "src/"}
},
"scripts": {
"post-update-cmd": [
"cp -R vendor/twbs/bootstrap/dist/* web/"
]
}
}