暫無描述

composer.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "maatwebsite/excel",
  3. "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel",
  4. "license": "LGPL",
  5. "keywords": [
  6. "laravel",
  7. "phpexcel",
  8. "excel",
  9. "csv",
  10. "export",
  11. "import",
  12. "batch"
  13. ],
  14. "authors": [
  15. {
  16. "name": "Maatwebsite.nl",
  17. "email": "patrick@maatwebsite.nl"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.5",
  22. "phpoffice/phpexcel": "1.8.*",
  23. "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  24. "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  25. "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  26. "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  27. "nesbot/carbon": "~1.0",
  28. "tijsverkoyen/css-to-inline-styles": "~2.0"
  29. },
  30. "require-dev": {
  31. "phpseclib/phpseclib": "~1.0",
  32. "phpunit/phpunit": "~4.0",
  33. "mockery/mockery": "~0.9",
  34. "orchestra/testbench": "3.1.*"
  35. },
  36. "suggest": {
  37. "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  38. "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  39. "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
  40. "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*"
  41. },
  42. "autoload": {
  43. "classmap": [
  44. "src/Maatwebsite/Excel"
  45. ],
  46. "psr-0": {
  47. "Maatwebsite\\Excel\\": "src/"
  48. }
  49. },
  50. "autoload-dev": {
  51. "classmap": [
  52. "tests/TestCase.php"
  53. ]
  54. }
  55. }