risetechapps/notify-driver-for-laravel

1.0.0 2025-02-11 13:55 UTC

This package is auto-updated.

Last update: 2025-03-24 18:02:20 UTC


README

📌 Sobre o Projeto

O Laravel Notify Driver é um package para Laravel que falicita a integração com Notify para enviar email, sms e notificações push.

✨ Funcionalidades

  • 🔑 Envia email envie email sem burocracia
  • 🏷 Envia SMS envie sms sem burocracia

🚀 Instalação

1️⃣ Requisitos

Antes de instalar, certifique-se de que seu projeto atenda aos seguintes requisitos:

  • PHP >= 8.0
  • Laravel >= 10
  • Composer instalado

2️⃣ Instalação do Package

Execute o seguinte comando no terminal:

  composer require risetechapps/notify-driver-for-laravel

3️⃣ Configurações

    //services.php
    return [

    /*
    |--------------------------------------------------------------------------
    | Third Party Services
    |--------------------------------------------------------------------------
    |
    | This file is for storing the credentials for third party services such
    | as Mailgun, Postmark, AWS and more. This file provides the de facto
    | location for this type of information, allowing packages to have
    | a conventional file to locate the various service credentials.
    |
    */

    'mailgun' => [
        'domain' => env('MAILGUN_DOMAIN'),
        'secret' => env('MAILGUN_SECRET'),
        'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
        'scheme' => 'https',
    ],

    'postmark' => [
        'token' => env('POSTMARK_TOKEN'),
    ],

    'ses' => [
        'key' => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY'),
        'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
    ],

    'notify' => [
        'url' => env('NOTIFY_URL', ''),
        'key' => env('NOTIFY_KEY', ''),
        'from_name' => env('NOTIFY_FROM_NAME', ''),
    ]

];

🛠 Contribuição

Sinta-se à vontade para contribuir! Basta seguir estes passos:

  1. Faça um fork do repositório
  2. Crie uma branch (feature/nova-funcionalidade)
  3. Faça um commit das suas alterações
  4. Envie um Pull Request

📜 Licença

Este projeto é distribuído sob a licença MIT. Veja o arquivo LICENSE para mais detalhes.

💡 Desenvolvido por Rise Tech