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 1009B

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