composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.5.0",
  28. "ext-curl" : "*",
  29. "ckeditor/ckeditor" : "4.12.1",
  30. "mike42/escpos-php" : "2.2",
  31. "mobiledetect/mobiledetectlib" : "2.8.34",
  32. "phpoffice/phpexcel" : "1.8.1",
  33. "restler/framework" : "3.0.0-RC6",
  34. "tecnickcom/tcpdf" : "6.3.2",
  35. "nnnick/chartjs" : "^2.9",
  36. "stripe/stripe-php" : "6.43.1"
  37. },
  38. "require-dev" : {
  39. "jakub-onderka/php-parallel-lint" : "^0",
  40. "jakub-onderka/php-console-highlighter" : "^0",
  41. "phpunit/phpunit" : "^4",
  42. "squizlabs/php_codesniffer" : "^2",
  43. "phpunit/phpunit-selenium" : "^2"
  44. },
  45. "suggest" : {
  46. "ext-mysqlnd" : "To use with MySQL or MariaDB",
  47. "ext-mysqli" : "To use with MySQL or MariaDB",
  48. "ext-pgsql" : "To use with PostgreSQL",
  49. "ext-mssql" : "To use with MSSQL (experimental)",
  50. "ext-pdo_sqlite" : "To use with SQLite (experimental)",
  51. "ext-gd" : "Image manipulation (Required but maybe built-in PHP)",
  52. "ext-imagick" : "Generation of thumbs from PDF",
  53. "ext-mcrypt" : "(Required but maybe built-in PHP)",
  54. "ext-openssl" : "Secure connections (Emails, SOAP\u2026)",
  55. "ext-mbstring" : "Handle non UTF-8 characters",
  56. "ext-soap" : "Native SOAP",
  57. "ext-zip" : "ODT, Excel and file compression support",
  58. "ext-xml" : "Excel support"
  59. }
  60. }