Skip to content

Commit

Permalink
Initial sentry implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
dmols committed Aug 19, 2024
1 parent e15af27 commit 19988a4
Show file tree
Hide file tree
Showing 5 changed files with 389 additions and 4 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y \
unzip \
wget \
supervisor \
php-excimer \
apache2 \
&& docker-php-ext-configure gd \
&& docker-php-ext-install -j$(nproc) gd \
Expand Down
5 changes: 4 additions & 1 deletion build/nginx/Dockerfile.composer
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ FROM composer

RUN apk add gd-dev libpng-dev
RUN docker-php-ext-install gd
WORKDIR /app
WORKDIR /app

# Add Sentry SDK
RUN composer require sentry/sentry
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"ext-ctype": "*",
"ext-iconv": "*",
"ext-sodium": "*",
"ucfopen/phpally": "~1.2.1",
"composer/package-versions-deprecated": "1.11.99.3",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
Expand All @@ -25,6 +24,7 @@
"oro/doctrine-extensions": "^2.0",
"phpdocumentor/reflection-docblock": "^5.2",
"sensio/framework-extra-bundle": "^6.2",
"sentry/sentry": "^4.9",
"symfony/apache-pack": "^1.0",
"symfony/asset": "6.0.*",
"symfony/console": "6.0.*",
Expand Down Expand Up @@ -55,7 +55,9 @@
"symfony/webpack-encore-bundle": "^1.7",
"symfony/yaml": "6.0.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
"twig/twig": "^2.12|^3.0",
"ucfopen/phpally": "~1.2.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
Expand Down
Loading

0 comments on commit 19988a4

Please sign in to comment.