composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "scrivo/highlight.php",
  3. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  4. "keywords": [
  5. "code",
  6. "syntax",
  7. "highlight",
  8. "highlight.js",
  9. "highlight.php"
  10. ],
  11. "type": "library",
  12. "license": "BSD-3-Clause",
  13. "scripts": {
  14. "test": "phpunit -v"
  15. },
  16. "support": {
  17. "issues": "https://github.com/scrivo/highlight.php/issues",
  18. "source": "https://github.com/scrivo/highlight.php"
  19. },
  20. "autoload": {
  21. "psr-0": {
  22. "Highlight\\": "",
  23. "HighlightUtilities\\": ""
  24. },
  25. "files": [
  26. "HighlightUtilities/functions.php"
  27. ]
  28. },
  29. "authors": [
  30. {
  31. "name": "Geert Bergman",
  32. "homepage": "http://www.scrivo.org/",
  33. "role": "Project Author"
  34. },
  35. {
  36. "name": "Vladimir Jimenez",
  37. "homepage": "https://allejo.io",
  38. "role": "Maintainer"
  39. },
  40. {
  41. "name": "Martin Folkers",
  42. "homepage": "https://twobrain.io",
  43. "role": "Contributor"
  44. }
  45. ],
  46. "require-dev": {
  47. "phpunit/phpunit": "^4.8|^5.7",
  48. "symfony/finder": "^3.4",
  49. "symfony/var-dumper": "^3.4"
  50. },
  51. "require": {
  52. "php": ">=5.4",
  53. "ext-json": "*",
  54. "ext-mbstring": "*"
  55. },
  56. "suggest": {
  57. "ext-dom": "Needed to make use of the features in the utilities namespace"
  58. }
  59. }