composer.json 741 B

12345678910111213141516171819202122232425
  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. "homepage": "http://jmsyst.com/bundles/JMSSerializerBundle",
  7. "license": "Apache2",
  8. "authors": [
  9. {
  10. "name": "Johannes M. Schmitt",
  11. "email": "schmittjoh@gmail.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.2",
  16. "jms/metadata": ">=1.1.0"
  17. },
  18. "require-dev": {
  19. "symfony/framework-bundle": "2.*"
  20. },
  21. "autoload": {
  22. "psr-0": { "JMS\\SerializerBundle": "" }
  23. },
  24. "target-dir": "JMS/SerializerBundle"
  25. }