Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusantguerrero committed Dec 17, 2023
1 parent 11ef73b commit 0a75951
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 37 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ FROM php:8.1.2-fpm
ARG user
ARG uid
ARG TZ

ENV user $user
ENV uid $uid
ENV TZ $TZ
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
Expand Down Expand Up @@ -36,3 +40,4 @@ RUN mkdir -p /home/$user/.composer && \
WORKDIR /var/www

USER $user
CMD ["php artisan serve"]
12 changes: 10 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"repositories": [
{
"url": "../packages/journal",
"type": "path",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.1",
"ext-mailparse": "*",
"ext-redis": "*",
"brick/money": "^0.6.0",
"doctrine/dbal": "^3.3",
"dompdf/dompdf": "^2.0.3",
Expand All @@ -29,7 +37,7 @@
"laravel/tinker": "^2.8",
"maatwebsite/excel": "^3.1",
"nwidart/laravel-modules": "^9.0",
"php-mime-mail-parser/php-mime-mail-parser": "^7.1",
"php-mime-mail-parser/php-mime-mail-parser": "^8.0",
"phpoffice/phpspreadsheet": "^1.27",
"rlanvin/php-rrule": "^2.4",
"simshaun/recurr": "^5.0",
Expand Down
62 changes: 30 additions & 32 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ services:
phpmyadmin:
depends_on:
- db
#links:
#- db:mysql
image: phpmyadmin/phpmyadmin
container_name: phpmyadmin
restart: always
Expand All @@ -134,7 +132,6 @@ services:
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- VIRTUAL_HOST=phpmyadmin.${HOST_DOMAIN}
#- VIRTUAL_PORT=8002
- LETSENCRYPT_HOST=phpmyadmin.${HOST_DOMAIN}
- [email protected]
networks:
Expand Down

0 comments on commit 0a75951

Please sign in to comment.