composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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" : [
  6. "erp",
  7. "crm",
  8. "invoice",
  9. "sme",
  10. "proposal",
  11. "order",
  12. "stock",
  13. "agenda"
  14. ],
  15. "homepage" : "https://www.dolibarr.org",
  16. "license" : "GPL-3.0-or-later",
  17. "support" : {
  18. "issues" : "https://github.com/Dolibarr/dolibarr/issues",
  19. "forum" : "https://www.dolibarr.org/forum",
  20. "wiki" : "https://wiki.dolibarr.org",
  21. "source" : "https://github.com/Dolibarr/dolibarr"
  22. },
  23. "config" : {
  24. "vendor-dir" : "htdocs/includes"
  25. },
  26. "require" : {
  27. "php" : ">=5.3.0",
  28. "ext-curl" : "*",
  29. "ccampbell/chromephp" : "4.1.0",
  30. "ckeditor/ckeditor" : "4.6.2",
  31. "mike42/escpos-php" : "1.2.1",
  32. "mobiledetect/mobiledetectlib" : "2.8.17",
  33. "phpoffice/phpexcel" : "1.8.1",
  34. "restler/framework" : "3.0.0-RC6",
  35. "tecnickcom/tcpdf" : "^6.2",
  36. "atgp/factur-x" : "^1.0",
  37. "luracast/restler": "^3.0"
  38. },
  39. "require-dev" : {
  40. "jakub-onderka/php-parallel-lint" : "^0",
  41. "jakub-onderka/php-console-highlighter" : "^0",
  42. "phpunit/phpunit" : "^4",
  43. "squizlabs/php_codesniffer" : "^2",
  44. "phpunit/phpunit-selenium" : "^2"
  45. },
  46. "suggest" : {
  47. "ext-mysqlnd" : "To use with MySQL or MariaDB",
  48. "ext-mysqli" : "To use with MySQL or MariaDB",
  49. "ext-pgsql" : "To use with PostgreSQL",
  50. "ext-mssql" : "To use with MSSQL (experimental)",
  51. "ext-pdo_sqlite" : "To use with SQLite (experimental)",
  52. "ext-gd" : "Image manipulation (Required but maybe built-in PHP)",
  53. "ext-imagick" : "Image manipulation (TCPDF)",
  54. "ext-mcrypt" : "(Required but maybe built-in PHP)",
  55. "ext-openssl" : "Secure connections (Emails, SOAP\u2026)",
  56. "ext-mbstring" : "Handle non UTF-8 databases",
  57. "ext-soap" : "Native SOAP",
  58. "ext-zip" : "ODT and Excel support",
  59. "ext-xml" : "Excel support",
  60. "firephp/firephp-core" : "Logging to Firebug console support"
  61. }
  62. }