Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": "Contributor"
  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": "^2.8"
  49. },
  50. "require": {
  51. "php": ">=5.4",
  52. "ext-json": "*",
  53. "ext-mbstring": "*"
  54. },
  55. "suggest": {
  56. "ext-dom": "Needed to make use of the features in the utilities namespace"
  57. }
  58. }