This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # amd64/php | php | |
| ARG PHP_PLATFORM="amd64/php" | |
| # 8.2 | 8.3 | |
| ARG PHP_VERSION="8.3" | |
| ARG ALPINE_VERSION="3.20" | |
| FROM --platform="linux/amd64" ${PHP_PLATFORM}:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} | |
| # 17.10.5 | 17.10.6 | |
| ARG ODBC_VERSION="17.10.6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # patch ramdisk.img (for installing Magisk on x64 Android emulator) | |
| # | |
| # x86_64 on Android 12 (API Level 32) is supported/tested currently | |
| # | |
| # install AVD: | |
| # | |
| # sudo sdkmanager 'system-images;android-32;google_apis_playstore;x86_64' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Mail; | |
| use BadMethodCallException; | |
| use Illuminate\Bus\Queueable; | |
| use Illuminate\Contracts\Queue\ShouldQueue; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Mail\Mailable; | |
| use Illuminate\Mail\Mailables\Content; |