Skip to content

Commit

Permalink
Resolves #200
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbrendel committed Jun 30, 2024
1 parent ea0b7cb commit 1e47705
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ GET /cronjob/calendar/reminder?cronpw={your-auth-token}

## System requirements

- PHP ^8.2
- PHP ^8.3
- MySQL (10.4.27-MariaDB or similar)
- SMTP server for e-mailing
- Docker with Docker-Compose for containerization
Expand Down
2 changes: 1 addition & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN composer install --no-scripts --no-autoloader
RUN composer dump-autoload --optimize

# Second stage: Apache + PHP setup
FROM php:8.2.0-apache
FROM php:8.3.0-apache

# Set the working directory
WORKDIR /var/www/html
Expand Down
4 changes: 2 additions & 2 deletions public/install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@

<tbody>
<tr>
<td>PHP 8.2</td>
<td class="is-right"><?= ((phpversion() >= '8.2') ? '<span class="is-successful"><i class="fas fa-check-circle"></i></span>': '<span class="is-insufficient">8.2 required, yours: ' . phpversion() . '</span>') ?></td>
<td>PHP 8.3</td>
<td class="is-right"><?= ((phpversion() >= '8.3') ? '<span class="is-successful"><i class="fas fa-check-circle"></i></span>': '<span class="is-insufficient">8.3 required, yours: ' . phpversion() . '</span>') ?></td>
</tr>

<tr>
Expand Down

0 comments on commit 1e47705

Please sign in to comment.