Skip to content

Commit

Permalink
moved to symfony mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosdipaolo committed Aug 26, 2022
1 parent ab95552 commit 7da0528
Show file tree
Hide file tree
Showing 5 changed files with 887 additions and 92 deletions.
12 changes: 12 additions & 0 deletions .psysh.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use Dotenv\Dotenv;

// Automatically autoload Composer dependencies
if (is_file(getcwd() . '/vendor/autoload.php')) {
require_once getcwd() . '/vendor/autoload.php';
}

// Load environmental variables
$dotenv = Dotenv::createImmutable(__DIR__);
$dotenv->load();
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
}
],
"require": {
"php": ">=7.2",
"swiftmailer/swiftmailer": "^6.0"
"php": ">=8.1",
"symfony/mailer": "^6.1",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 7da0528

Please sign in to comment.