composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "dolibarr/dolibarr",
  3. "type": "project",
  4. "description": "Dolibarr ERP & CRM is a modern and easy to use web software to manage your business",
  5. "keywords": ["erp","crm","invoice","sme","proposal","order","stock"],
  6. "homepage": "http://www.dolibarr.org",
  7. "license": "GPL-3.0+",
  8. "support": {
  9. "issues": "https://github.com/Dolibarr/dolibarr/issues",
  10. "forum": "http://www.dolibarr.org/forum",
  11. "wiki": "http://wiki.dolibarr.org",
  12. "irc": "irc://chat.freenode.net/dolibarr",
  13. "source": "https://github.com/Dolibarr/dolibarr"
  14. },
  15. "config": {
  16. "vendor-dir": "htdocs/includes"
  17. },
  18. "require": {
  19. "php": ">=5.3.0",
  20. "ext-curl": "*",
  21. "ccampbell/chromephp": "4.1.0",
  22. "ckeditor/ckeditor": "dev-full/stable",
  23. "mike42/escpos-php": "1.2.1",
  24. "mobiledetect/mobiledetectlib": "2.8.17",
  25. "phpoffice/phpexcel": "1.8.1",
  26. "restler/framework": "3.0.0-RC6",
  27. "tecnickcom/tcpdf": "6.2.12"
  28. },
  29. "require-dev": {
  30. "jakub-onderka/php-parallel-lint": "^0",
  31. "jakub-onderka/php-console-highlighter": "^0",
  32. "phpunit/phpunit": "^4",
  33. "squizlabs/php_codesniffer": "^2"
  34. },
  35. "suggest": {
  36. "ext-mysqlnd": "To use with MySQL or MariaDB",
  37. "ext-mysqli": "To use with MySQL or MariaDB",
  38. "ext-pgsql": "To use with PostgreSQL",
  39. "ext-mssql": "To use with MSSQL (experimental)",
  40. "ext-pdo_sqlite": "To use with SQLite (experimental)",
  41. "ext-gd": "Image manipulation (Required but maybe built-in PHP)",
  42. "ext-imagick": "Image manipulation (TCPDF)",
  43. "ext-mcrypt": "(Required but maybe built-in PHP)",
  44. "ext-openssl": "Secure connections (Emails, SOAP…)",
  45. "ext-mbstring": "Handle non UTF-8 databases",
  46. "ext-soap": "Native SOAP",
  47. "ext-zip": "ODT and Excel support",
  48. "ext-xml": "Excel support",
  49. "firephp/firephp-core": "Logging to Firebug console support",
  50. "raven/raven": "Sentry logging server support"
  51. }
  52. }