composer.json 763 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "ibrand/laravel-currency-format",
  3. "type": "library",
  4. "description": "iBrand coterie server.",
  5. "keywords": [
  6. "iBrand",
  7. "coterie",
  8. "server"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "shjchen",
  14. "email": "ibrand.shjchen@foxmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~6.0",
  22. "orchestra/testbench": "~3.5",
  23. "orchestra/database": "~3.5"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "iBrand\\Currency\\Format\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "iBrand\\Currency\\Format\\Test\\": "tests"
  33. }
  34. },
  35. "extra": {
  36. "laravel": {
  37. "providers": [
  38. ]
  39. }
  40. },
  41. "minimum-stability": "dev",
  42. "prefer-stable": true
  43. }