composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.3.0",
  22. "phpoffice/phpexcel": "~1.8.0",
  23. "illuminate/cache": "~5.0|~5.1",
  24. "illuminate/config": "~5.0|~5.1",
  25. "illuminate/filesystem": "~5.0|~5.1",
  26. "illuminate/support": "~5.0|~5.1",
  27. "nesbot/carbon": "~1.0",
  28. "tijsverkoyen/css-to-inline-styles": "~1.5"
  29. },
  30. "require-dev": {
  31. "phpseclib/phpseclib": ">=0.3.7",
  32. "phpunit/phpunit": "~4.0",
  33. "mockery/mockery": "~0.9",
  34. "orchestra/testbench": "~3.0.0"
  35. },
  36. "suggest": {
  37. "illuminate/http": "~5.0|~5.1",
  38. "illuminate/routing": "~5.0|~5.1",
  39. "illuminate/view": "~5.0|~5.1"
  40. },
  41. "autoload": {
  42. "classmap": [
  43. "src/Maatwebsite/Excel",
  44. "tests/TestCase.php"
  45. ],
  46. "psr-0": {
  47. "Maatwebsite\\Excel\\": "src/"
  48. }
  49. }
  50. }