composer.json 956 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "phpunit/php-text-template",
  3. "description": "Simple template engine.",
  4. "type": "library",
  5. "keywords": [
  6. "template"
  7. ],
  8. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9. "license": "BSD-3-Clause",
  10. "authors": [
  11. {
  12. "name": "Sebastian Bergmann",
  13. "email": "sebastian@phpunit.de",
  14. "role": "lead"
  15. }
  16. ],
  17. "support": {
  18. "issues": "https://github.com/sebastianbergmann/php-text-template/issues"
  19. },
  20. "config": {
  21. "platform": {
  22. "php": "7.3.0"
  23. },
  24. "optimize-autoloader": true,
  25. "sort-packages": true
  26. },
  27. "require": {
  28. "php": ">=7.3"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^9.3"
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "2.0-dev"
  41. }
  42. }
  43. }