composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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:detection": "phpunit test/DetectionTest.php",
  15. "test:markup": "phpunit test/MarkupTest.php",
  16. "test": "phpunit -v"
  17. },
  18. "support": {
  19. "issues": "https://github.com/scrivo/highlight.php/issues",
  20. "source": "https://github.com/scrivo/highlight.php"
  21. },
  22. "autoload": {
  23. "psr-0": {
  24. "Highlight\\": "",
  25. "HighlightUtilities\\": ""
  26. },
  27. "files": [
  28. "HighlightUtilities/functions.php"
  29. ]
  30. },
  31. "authors": [
  32. {
  33. "name": "Geert Bergman",
  34. "homepage": "http://www.scrivo.org/",
  35. "role": "Project Author"
  36. },
  37. {
  38. "name": "Vladimir Jimenez",
  39. "homepage": "https://allejo.io",
  40. "role": "Maintainer"
  41. },
  42. {
  43. "name": "Martin Folkers",
  44. "homepage": "https://twobrain.io",
  45. "role": "Contributor"
  46. }
  47. ],
  48. "require": {
  49. "php": ">=5.4",
  50. "ext-json": "*",
  51. "ext-mbstring": "*"
  52. },
  53. "require-dev": {
  54. "phpunit/phpunit": "^4.8|^5.7",
  55. "sabberworm/php-css-parser": "^8.3",
  56. "symfony/finder": "^2.8|^3.4",
  57. "symfony/var-dumper": "^2.8|^3.4"
  58. },
  59. "suggest": {
  60. "ext-dom": "Needed to make use of the features in the utilities namespace"
  61. }
  62. }