Skip to main contentdfsdf

    • Symfony2 Bundle for PHP Object to XML Mapping
    • [doctrine-oxm]  git=http://github.com/doctrine/oxm.git  target=/doctrine-oxm  [DoctrineOXMBundle]  git=http://github.com/doctrine/DoctrineOXMBundle.git  target=/bundles/Doctrine/Bundle/OXMBundle

    5 more annotations...

    • Doctrine 2 OXM

        

      Doctrine OXM is a PHP 5.3 project for PHP object to XML mapping that provides support for persisting the XML to a file system via common Doctrine techniques.

        

      Note: This project is still in it's infancy and should not be used for any production related code. Its API is still quite unstable and not all features are yet implemented. Any help in advancing the project forward would be welcome. Let the forking begin!

    • XmlEntityManager

        

      Based on the EntityManager of the Doctrine 2 ORM project. Objects mapped as an @XmlRootEntity may be managed by the XmlEntityManager. As these objects are persisted, they are saved in XML format to the file system under a user configured directory and naming scheme.

        
      $user = new User(); $user->setId(1); $user->setName("Malcolm Reynolds"); $user->setOccupation("Space Cowboy");  $em->persist($user); $em->flush();            // saves marshalled user object as XML to the file system. 
        

      The XmlEntityManager also allows access to repository type objects for loading entities back again.

        

    3 more annotations...

1 - 4 of 4
20 items/page
List Comments (0)