composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "ddeboer/data-import",
  3. "description": "Import data from, and export data to, a range of file formats and media",
  4. "keywords": [ "data", "import", "export", "csv", "excel", "doctrine" ],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "David de Boer",
  9. "email": "david@ddeboer.nl"
  10. },
  11. {
  12. "name": "The community",
  13. "homepage": "https://github.com/ddeboer/data-import/graphs/contributors"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/ddeboer/data-import/issues",
  18. "source": "https://github.com/ddeboer/data-import"
  19. },
  20. "require": {
  21. "php": ">=5.4.0",
  22. "psr/log": "~1.0"
  23. },
  24. "require-dev": {
  25. "ext-iconv": "*",
  26. "ext-mbstring": "*",
  27. "ext-sqlite3": "*",
  28. "symfony/property-access": "~2.5",
  29. "phpoffice/phpexcel": "*",
  30. "doctrine/dbal": "~2.4",
  31. "doctrine/orm": "~2.4",
  32. "symfony/console": "~2.8|~3.0",
  33. "symfony/validator": "~2.8|~3.0",
  34. "phpspec/phpspec": "~2.1",
  35. "henrikbjorn/phpspec-code-coverage" : "~1.0"
  36. },
  37. "suggest": {
  38. "ext-iconv": "For the CharsetValueConverter",
  39. "ext-mbstring": "For the CharsetValueConverter",
  40. "symfony/validator": "to use the ValidatorFilter",
  41. "doctrine/dbal": "If you want to use the DbalReader",
  42. "phpoffice/phpexcel": "If you want to use the ExcelReader",
  43. "symfony/console": "If you want to use the ConsoleProgressWriter",
  44. "symfony/property-access": "If you want to use the ObjectConverter"
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "Ddeboer\\DataImport\\": "src/",
  49. "Ddeboer\\DataImport\\Tests\\": "tests/"
  50. }
  51. }
  52. }