feat: implement full bff logic
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"type": "project",
|
||||
"license": "proprietary",
|
||||
"description": "BFF for Keycloak SSO across self-hosted Appsmith apps",
|
||||
"require": {
|
||||
"php": ">=8.2",
|
||||
"ext-ctype": "*",
|
||||
"ext-iconv": "*",
|
||||
"firebase/php-jwt": "^7.1",
|
||||
"symfony/cache": "7.*",
|
||||
"symfony/console": "7.*",
|
||||
"symfony/dotenv": "7.*",
|
||||
"symfony/flex": "^2",
|
||||
"symfony/framework-bundle": "7.*",
|
||||
"symfony/http-client": "7.*",
|
||||
"symfony/monolog-bundle": "^4.0",
|
||||
"symfony/runtime": "7.*",
|
||||
"symfony/yaml": "7.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"deployer/deployer": "^8.0",
|
||||
"symfony/maker-bundle": "^1.60"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"symfony/flex": true,
|
||||
"symfony/runtime": true
|
||||
},
|
||||
"sort-packages": true
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"App\\Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"replace": {
|
||||
"symfony/polyfill-ctype": "*",
|
||||
"symfony/polyfill-iconv": "*",
|
||||
"symfony/polyfill-php72": "*",
|
||||
"symfony/polyfill-php73": "*",
|
||||
"symfony/polyfill-php74": "*",
|
||||
"symfony/polyfill-php80": "*",
|
||||
"symfony/polyfill-php81": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"auto-scripts": {
|
||||
"cache:clear": "symfony-cmd",
|
||||
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
||||
},
|
||||
"post-install-cmd": ["@auto-scripts"],
|
||||
"post-update-cmd": ["@auto-scripts"]
|
||||
},
|
||||
"extra": {
|
||||
"symfony": {
|
||||
"allow-contrib": false,
|
||||
"require": "7.*"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user