composer.json 764 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "ibrand/laravel-shopping-cart",
  3. "description": "Shopping cart for Laravel Application.",
  4. "keywords": [
  5. "shopping cart",
  6. "shopping",
  7. "laravel"
  8. ],
  9. "authors": [
  10. {
  11. "name": "shjchen",
  12. "email": "ibrand.shjchen@foxmail.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.6"
  17. },
  18. "require-dev": {
  19. "mockery/mockery": "~0.9",
  20. "phpunit/phpunit": "~5.0",
  21. "orchestra/testbench": "~3.4",
  22. "orchestra/database": "^3.4"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "iBrand\\Shoppingcart\\": "src/"
  27. }
  28. },
  29. "license": "MIT",
  30. "extra": {
  31. "laravel": {
  32. "providers": [
  33. "iBrand\\Shoppingcart\\ServiceProvider"
  34. ],
  35. "aliases": {
  36. "Cart": "iBrand\\Shoppingcart\\Facade"
  37. }
  38. }
  39. }
  40. }