composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "twig/twig",
  3. "type": "library",
  4. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5. "keywords": ["templating"],
  6. "homepage": "https://twig.symfony.com",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com",
  12. "homepage": "http://fabien.potencier.org",
  13. "role": "Lead Developer"
  14. },
  15. {
  16. "name": "Twig Team",
  17. "homepage": "https://twig.symfony.com/contributors",
  18. "role": "Contributors"
  19. },
  20. {
  21. "name": "Armin Ronacher",
  22. "email": "armin.ronacher@active-4.com",
  23. "role": "Project Founder"
  24. }
  25. ],
  26. "support": {
  27. "forum": "https://groups.google.com/forum/#!forum/twig-users"
  28. },
  29. "require": {
  30. "php": "^7.0",
  31. "symfony/polyfill-mbstring": "^1.3",
  32. "symfony/polyfill-ctype": "^1.8"
  33. },
  34. "require-dev": {
  35. "symfony/phpunit-bridge": "^3.4.19|^4.1.8",
  36. "symfony/debug": "^2.7",
  37. "psr/container": "^1.0"
  38. },
  39. "autoload": {
  40. "psr-0" : {
  41. "Twig_" : "lib/"
  42. },
  43. "psr-4" : {
  44. "Twig\\" : "src/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-0" : {
  49. "Twig_Tests_" : "test/"
  50. }
  51. },
  52. "extra": {
  53. "branch-alias": {
  54. "dev-master": "2.7-dev"
  55. }
  56. }
  57. }