Service provider for laravel which provide Mirfalah Swift_Transport implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 940B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "mirfalah/laravel-swift",
  3. "description": "Service provider for laravel which provide Mirfalah Swift_Transport implementation",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.2",
  7. "illuminate/mail": ">=5 <7",
  8. "illuminate/support": ">=5 <7",
  9. "mirfalah/sendmail-swift-transport": "^1.0"
  10. },
  11. "license": "Mirfalah-Tech",
  12. "authors": [
  13. {
  14. "name": "Eng Shun",
  15. "email": "engshun@mirfalah.my"
  16. }
  17. ],
  18. "autoload": {
  19. "psr-4": {
  20. "MirfalahTech\\Laravel\\Mail\\": "src/"
  21. }
  22. },
  23. "repositories": [
  24. {
  25. "type": "vcs",
  26. "url": "https://git.mirfalah.my/mirfalah-tech/sendmail-swift-transport.git"
  27. }
  28. ],
  29. "extra": {
  30. "laravel": {
  31. "providers": [
  32. "MirfalahTech\\Laravel\\Mail\\MirfalahSendmailServiceProvider"
  33. ]
  34. }
  35. }
  36. }