composer.json 565 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "ibrand/invoice",
  3. "type": "library",
  4. "description": "GuoJiangClub Invoice component",
  5. "keywords": [
  6. "GuoJiangClub",
  7. "Invoice",
  8. "component"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "GuoJiangClub Crop",
  14. "email": "i@chenhow.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^5.6|^7.0"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "GuoJiangClub\\Component\\Invoice\\": "src/"
  23. }
  24. },
  25. "extra": {
  26. "laravel": {
  27. "providers": [
  28. "GuoJiangClub\\Component\\Invoice\\InvoiceServiceProvider"
  29. ]
  30. }
  31. },
  32. "minimum-stability": "dev",
  33. "prefer-stable": true
  34. }