Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzondervan committed Oct 13, 2023
1 parent 540a203 commit d1f2e01
Show file tree
Hide file tree
Showing 11 changed files with 505 additions and 2,087 deletions.
4 changes: 2 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm-alpine AS api_platform_php
FROM php:8.2-fpm-alpine AS api_platform_php

# Create a user
RUN addgroup -S -g 101 commonground-gateway && adduser -S -D -u 101 commonground-gateway
Expand All @@ -18,7 +18,7 @@ RUN apk add --no-cache \
bash \
;

ARG APCU_VERSION=5.1.17
ARG APCU_VERSION=5.1.21
ARG SQLSRV_VERSION=5.10.1

RUN set -eux; \
Expand Down
24 changes: 17 additions & 7 deletions api/composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4.0",
"php": "^7.4.0 || ^8.1.0 || ^8.2.0",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
Expand All @@ -13,29 +13,36 @@
"alcaeus/mongo-php-adapter": "^1.2",
"api-platform/core": "^2.6",
"beberlei/doctrineextensions": "^1.3",
"commongateway/corebundle": "^1.1.74",
"commongateway/corebundle": "dev-feature/MF-62/PHP-8.2",
"composer/ca-bundle": "*",
"composer/package-versions-deprecated": "1.11.99.3",
"conduction/commongroundbundle": "dev-feature-gateway",
"conduction/digidbundle": "dev-master",
"conduction/samlbundle": "dev-master",
"composer/semver": "*",
"composer/xdebug-handler": "*",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-fixtures-bundle": "*",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.9",
"dompdf/dompdf": "^2",
"endroid/qr-code-bundle": "3.4",
"friendsofphp/proxy-manager-lts": "*",
"gedmo/doctrine-extensions": "*",
"guzzlehttp/guzzle": "6.5.8",
"guzzlehttp/psr7": "1.9",
"hautelook/alice-bundle": "^2.9.0",
"jwadhams/json-logic-php": "^1.4",
"laminas/laminas-code": "*",
"laminas/laminas-escaper": "*",
"league/flysystem-bundle": "^2.4",
"league/flysystem-ftp": "^2.4",
"league/html-to-markdown": "*",
"mongodb/mongodb": "^1.15",
"monolog/monolog": "^2.8.0",
"nelmio/cors-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpoffice/phpspreadsheet": "^1.29",
"phpoffice/phpword": "^0.18.2",
"ramsey/uuid-doctrine": "*",
"respect/validation": "^2.2",
"setono/cron-expression-bundle": "^1.5",
"symfony/asset": "5.3.*",
Expand All @@ -49,6 +56,7 @@
"symfony/mailer": "5.3.*",
"symfony/mailgun-mailer": "5.3.*",
"symfony/messenger": "5.3.*",
"symfony/process": "5.3.*",
"symfony/property-access": "5.3.*",
"symfony/property-info": "5.3.*",
"symfony/proxy-manager-bridge": "5.3.*",
Expand All @@ -58,7 +66,9 @@
"symfony/twig-bundle": "5.3.*",
"symfony/validator": "5.3.*",
"symfony/web-profiler-bundle": "5.3.*",
"symfony/yaml": "5.3.*"
"symfony/yaml": "5.3.*",
"thecodingmachine/safe": "*",
"web-token/jwt-framework": "*"
},
"config": {
"optimize-autoloader": true,
Expand Down
Loading

0 comments on commit d1f2e01

Please sign in to comment.