composer.json 995 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "doctrine/sql-formatter",
  3. "description": "a PHP SQL highlighting library",
  4. "homepage": "https://github.com/doctrine/sql-formatter/",
  5. "keywords": ["sql", "highlight"],
  6. "license": "MIT",
  7. "type": "library",
  8. "require": {
  9. "php": "^7.1 || ^8.0"
  10. },
  11. "require-dev": {
  12. "bamarni/composer-bin-plugin": "^1.4"
  13. },
  14. "authors": [
  15. {
  16. "name": "Jeremy Dorn",
  17. "email": "jeremy@jeremydorn.com",
  18. "homepage": "http://jeremydorn.com/"
  19. }
  20. ],
  21. "autoload": {
  22. "psr-4": {
  23. "Doctrine\\SqlFormatter\\": "src"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Doctrine\\SqlFormatter\\Tests\\": "tests"
  29. }
  30. },
  31. "config": {
  32. "sort-packages": true,
  33. "platform": {
  34. "php": "7.1.0"
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "bin": ["bin/sql-formatter"]
  43. }