composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy"
  20. },
  21. "config": {
  22. "platform": {
  23. "php": "8.1.0"
  24. },
  25. "optimize-autoloader": true,
  26. "sort-packages": true
  27. },
  28. "prefer-stable": true,
  29. "require": {
  30. "php": ">=8.1"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^10.0"
  34. },
  35. "autoload": {
  36. "classmap": [
  37. "src/"
  38. ]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-main": "3.0-dev"
  43. }
  44. }
  45. }