composer.json 728B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "symfony/translation",
  3. "type": "library",
  4. "description": "Symfony Translation Component",
  5. "keywords": [],
  6. "homepage": "http://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "http://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.2"
  20. },
  21. "suggest": {
  22. "symfony/config": "self.version",
  23. "symfony/yaml": "self.version"
  24. },
  25. "autoload": {
  26. "psr-0": { "Symfony\\Component\\Translation": "" }
  27. },
  28. "target-dir": "Symfony/Component/Translation"
  29. }