composer.json 671 B

123456789101112131415161718192021222324
  1. {
  2. "name": "jms/serializer-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Allows you to easily serialize, and deserialize object graphs of any complexity",
  5. "keywords": ["serialization", "deserialization", "json", "jaxb", "xml"],
  6. "license": "Apache",
  7. "authors": [
  8. {
  9. "name": "Johannes M. Schmitt",
  10. "email": "schmittjoh@gmail.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3.2",
  15. "jms/metadata": ">=1.1.0"
  16. },
  17. "suggest": {
  18. "symfony/framework-bundle": "2.*"
  19. },
  20. "autoload": {
  21. "psr-0": { "JMS\\SerializerBundle": "" }
  22. },
  23. "target-dir": "JMS/SerializerBundle"
  24. }