diff --git a/.env.example b/.env.example index 741521c4..4d3b2fd2 100644 --- a/.env.example +++ b/.env.example @@ -56,6 +56,9 @@ MAIL_PASSWORD=null MAIL_FROM_ADDRESS="hello@example.com" MAIL_FROM_NAME="${APP_NAME}" +# Resend Email Service (set MAIL_MAILER=resend to use) +RESEND_API_KEY= + AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_DEFAULT_REGION=us-east-1 diff --git a/composer.json b/composer.json index 8857f752..d9871fc5 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,8 @@ "laravel/fortify": "^1.30", "laravel/framework": "^12.0", "laravel/tinker": "^2.10.1", - "laravel/wayfinder": "^0.1.9" + "laravel/wayfinder": "^0.1.9", + "resend/resend-php": "^1.1" }, "require-dev": { "fakerphp/faker": "^1.23", diff --git a/composer.lock b/composer.lock index b098dfb8..5d456f88 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6b2387225b885940346beca54c271107", + "content-hash": "40779ce6890f5022e5e7c7c569bd328c", "packages": [ { "name": "bacon/bacon-qr-code", @@ -3927,6 +3927,63 @@ }, "time": "2025-09-04T20:59:21+00:00" }, + { + "name": "resend/resend-php", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/resend/resend-php.git", + "reference": "c1ce4ee5dc8ca90a5e6a2dc6d772a06abbe7c9d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/resend/resend-php/zipball/c1ce4ee5dc8ca90a5e6a2dc6d772a06abbe7c9d3", + "reference": "c1ce4ee5dc8ca90a5e6a2dc6d772a06abbe7c9d3", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^7.5", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.13", + "mockery/mockery": "^1.6", + "pestphp/pest": "^2.0|^3.0|^4.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/Resend.php" + ], + "psr-4": { + "Resend\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Resend and contributors", + "homepage": "https://github.com/resend/resend-php/contributors" + } + ], + "description": "Resend PHP library.", + "homepage": "https://resend.com/", + "keywords": [ + "api", + "client", + "php", + "resend", + "sdk" + ], + "support": { + "issues": "https://github.com/resend/resend-php/issues", + "source": "https://github.com/resend/resend-php/tree/v1.1.0" + }, + "time": "2025-11-26T08:41:40+00:00" + }, { "name": "stripe/stripe-php", "version": "v17.6.0",