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

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "mirfalah/laravel-payment",
  3. "description": "Laravel payment service provider",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.1",
  7. "illuminate/support": ">=5.0 <8.0",
  8. "illuminate/http": ">=5.0 <8.0"
  9. },
  10. "license": "Mirfalah-Tech",
  11. "authors": [
  12. {
  13. "name": "Lim Eng Shun",
  14. "email": "engshun@mirfalah.my"
  15. }
  16. ],
  17. "autoload": {
  18. "psr-4": {
  19. "MirfalahTech\\Laravel\\Payment\\": "src/"
  20. }
  21. },
  22. "extra": {
  23. "laravel": {
  24. "providers": [
  25. "MirfalahTech\\Laravel\\Payment\\PaymentServiceProvider"
  26. ]
  27. }
  28. }
  29. }