Skip to content

Commit

Permalink
Adiciona roadrunner na applicação
Browse files Browse the repository at this point in the history
  • Loading branch information
lpirola committed May 7, 2024
1 parent a92c15e commit 0288b5d
Show file tree
Hide file tree
Showing 165 changed files with 93,271 additions and 11,820 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: docker compose -f dev/docker-compose.yml up -d
- init: docker compose -f dev/docker-compose.yml up -d && cd src && pnpm i && pnpm run build
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public function __construct(ResponseFactoryInterface $responseFactory)
$this->responseFactory = $responseFactory;
}

public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface {
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
try {
return $handler->handle($request);
} catch (HttpNotFoundException $e) {
Expand All @@ -34,4 +35,4 @@ public function process(ServerRequestInterface $request, RequestHandlerInterface
return $response;
}
}
}
}
116 changes: 58 additions & 58 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
{
"require": {
"acelaya/doctrine-enum-type": "^2.3",
"akrabat/ip-address-middleware": "^2.1",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^3.6",
"doctrine/orm": "2.16.*",
"firebase/php-jwt": "^6.4",
"michelf/php-markdown": "1.*",
"monolog/monolog": "^3.4",
"mustache/mustache": "^2.11",
"opauth/openid": "*",
"opauth/logincidadao" : "*",
"opauth/authentik" : "*",
"pomo/pomo": "^1.5",
"psy/psysh": "^0.11.12",
"respect/validation": "^2.2",
"sinergi/browser-detector": "^6.1",
"slim/psr7": "^1.6",
"slim/slim": "4.*",
"smottt/wideimage": "*",
"symfony/amazon-mailer": "^6.3",
"symfony/cache": "^6.2",
"symfony/mailchimp-mailer": "^6.3",
"symfony/mailer": "^6.3",
"symfony/mailgun-mailer": "^6.3",
"symfony/mime": "^6.3",
"symfony/sendgrid-mailer": "^6.3",
"league/csv": "^9.6.2",
"symfony/http-foundation": "^7.0",
"symfony/routing": "^7.0",
"symfony/console": "^6.4.6"
"require": {
"php": "^7.3 || ^8.0",
"acelaya/doctrine-enum-type": "^2.3",
"akrabat/ip-address-middleware": "^2.1",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^3.6",
"doctrine/orm": "2.16.*",
"firebase/php-jwt": "^6.4",
"league/csv": "^9.6.2",
"michelf/php-markdown": "1.*",
"monolog/monolog": "^3.4",
"mustache/mustache": "^2.11",
"nyholm/psr7": "^1.4",
"opauth/authentik": "*",
"opauth/logincidadao": "*",
"opauth/openid": "*",
"php-curl-class/php-curl-class": "^9.18",
"php-di/php-di": "^6.0",
"php-di/slim-bridge": "^3.2",
"pomo/pomo": "^1.5",
"psy/psysh": "^0.11.12",
"respect/validation": "^2.2",
"sinergi/browser-detector": "^6.1",
"slim/psr7": "^1.6",
"slim/slim": "^4.0",
"smottt/wideimage": "*",
"spiral/roadrunner": "2024.1.0",
"spiral/roadrunner-http": "^3",
"spiral/roadrunner-worker": "^3",
"symfony/amazon-mailer": "^6.3",
"symfony/cache": "^6.2",
"symfony/mailchimp-mailer": "^6.3",
"symfony/mailer": "^6.3",
"symfony/mailgun-mailer": "^6.3",
"symfony/mime": "^6.3",
"symfony/sendgrid-mailer": "^6.3",
"zircote/swagger-php": "^4.8"
},
"autoload": {
"psr-4": {
"App\\": "app/src",
"App\\Tests\\": "app/tests",
"MapasCulturais\\": "src/core",
"MapasCulturais\\Modules\\": "src/modules",
"MapasCulturais\\Themes\\": "src/themes"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/hacklabr/opauth-logincidadao.git"
},
"autoload": {
"psr-4": {
"App\\": "app/src",
"App\\Tests\\": "app/tests",
"MapasCulturais\\": "src/core",
"MapasCulturais\\Modules\\": "src/modules",
"MapasCulturais\\Themes\\": "src/themes"
}
{
"type": "git",
"url": "https://github.com/mapasculturais/opauth-authentik.git"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/hacklabr/opauth-logincidadao.git"
},
{
"type": "git",
"url": "https://github.com/mapasculturais/opauth-authentik.git"
},
{
"type": "git",
"url": "https://github.com/mapasculturais/opauth.git"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"phpunit/phpunit": "^10",
"symfony/http-client": "^7",
"doctrine/data-fixtures": "^1.7"
{
"type": "git",
"url": "https://github.com/mapasculturais/opauth.git"
}
]
}
Loading

0 comments on commit 0288b5d

Please sign in to comment.