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
| # Replace! | |
| # [!server!] (the forge server instance) | |
| # [!sudo_password!] (random password for sudo) | |
| # [!db_password!] (random password for database user) | |
| # [!user.name!] (git user name) | |
| # [!user.email!] (git user email) | |
| # [!server_ip!] (git user email) | |
| # | |
| # REQUIRES: |
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 CircleCI 2.0 configuration file | |
| # | |
| # Check https://circleci.com/docs/2.0/language-php/ for more details | |
| # | |
| version: 2 | |
| jobs: | |
| build: | |
| docker: | |
| # specify the version you desire here | |
| - image: circleci/php:7.1-browsers |
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 | |
| /** | |
| * Creating MongoDB like ObjectIDs. | |
| * Using current timestamp, hostname, processId and a incremting id. | |
| * | |
| * @author Julius Beckmann | |
| */ | |
| function createMongoDbLikeId($timestamp, $hostname, $processId, $id) | |
| { |
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
| # After *Activate New Release* | |
| cd {{ release }} | |
| php artisan cache:clear | |
| php artisan view:clear | |
| php artisan purifier:clear | |
| php artisan config:cache | |
| php artisan route:cache |
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\Notifications; | |
| use App\Helpers\RemembersLocale; | |
| use Illuminate\Bus\Queueable; | |
| use Illuminate\Contracts\Queue\ShouldQueue; | |
| use Illuminate\Notifications\Messages\MailMessage; | |
| use Illuminate\Notifications\Notification; | |
| use Notifications\Channels\FirebaseChannel; |