Laravel payment dummy driver, a dummy payment gateway for development.
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 999B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "mirfalah/laravel-payment-dummy",
  3. "description": "Laravel payment dummy driver, a dummy payment gateway for development.",
  4. "type": "library",
  5. "homepage": "https://git.mirfalah.my/mirfalah-tech/laravel-payment-dummy.git",
  6. "minimum-stability": "dev",
  7. "readme": "README.md",
  8. "require": {
  9. "php": ">=7.1",
  10. "mirfalah/laravel-payment": "^2.0"
  11. },
  12. "license": "Mirfalah-Tech",
  13. "authors": [
  14. {
  15. "name": "Lim Eng Shun",
  16. "email": "engshun@mirfalah.my"
  17. }
  18. ],
  19. "autoload": {
  20. "psr-4": {
  21. "MirfalahTech\\Laravel\\Payment\\Gateway\\DummyPay\\": "src/"
  22. }
  23. },
  24. "extra": {
  25. "laravel": {
  26. "providers": [
  27. "MirfalahTech\\Laravel\\Payment\\Gateway\\DummyPay\\DummyPayServiceProvider"
  28. ]
  29. }
  30. },
  31. "repositories": [
  32. {
  33. "type": "composer",
  34. "url": "https://composer.mirfalah.my"
  35. }
  36. ]
  37. }