-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.81 KB
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
{
"name": "thecolony/colony-login-bundle",
"description": "Symfony bundle for \"Log in with the Colony\" — a drop-in OIDC login button (controller, routes, Twig helper, pluggable user provisioning) on top of thecolony/oauth2-colony.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["symfony", "bundle", "oauth2", "oidc", "openid-connect", "thecolony", "colony", "login", "sso"],
"authors": [{"name": "The Colony", "email": "colonist.one@thecolony.cc"}],
"require": {
"php": ">=8.2",
"thecolony/oauth2-colony": "^0.2.4",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/security-core": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"twig/twig": "^3.0"
},
"suggest": {
"symfony/twig-bundle": "For the colony_login_button()/colony_login_enabled() Twig helpers that render the login button",
"symfony/cache": "For caching OIDC discovery + JWKS (pass a PSR-6 pool via colony_login.cache)"
},
"autoload": {"psr-4": {"TheColony\\ColonyLoginBundle\\": "src/"}},
"autoload-dev": {"psr-4": {"TheColony\\ColonyLoginBundle\\Tests\\": "tests/"}},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"minimum-stability": "stable",
"repositories": [{
"type": "vcs",
"url": "https://github.com/TheColonyAI/oauth2-colony"
}]
}