├── .doctrine-project.json ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── autoload.php ├── bin ├── clean-dependencies.sh ├── initialize-ci.sh ├── initialize-dependencies.sh ├── odb-shared.sh └── report.sh ├── ci-stuff ├── orientdb-server-config.xml └── orientdb-server-log.properties ├── composer.json ├── composer.lock ├── docs ├── en │ └── index.rst └── orient.d ├── examples ├── Domain │ ├── Address.php │ ├── Link.php │ ├── Link │ │ ├── External.php │ │ └── Page.php │ └── Menu.php ├── binary.php ├── fixtures │ ├── friends.gz │ ├── menu.gz │ └── orientdb.demo.txt ├── foaf.php ├── menu.php └── proxies │ └── Doctrine │ └── OrientDB │ └── Proxy │ └── README.md ├── phpunit.xml.dist ├── src └── Doctrine │ ├── ODM │ └── OrientDB │ │ ├── Caster │ │ ├── Caster.php │ │ ├── CasterInterface.php │ │ └── CastingMismatchException.php │ │ ├── Collections │ │ └── ArrayCollection.php │ │ ├── Configuration.php │ │ ├── ConfigurationException.php │ │ ├── DocumentNotFoundException.php │ │ ├── Manager.php │ │ ├── Mapper │ │ ├── Annotations │ │ │ ├── Document.php │ │ │ ├── Property.php │ │ │ ├── Reader.php │ │ │ └── ReaderInterface.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataFactory.php │ │ ├── ClusterMap.php │ │ ├── Hydration │ │ │ └── Hydrator.php │ │ └── MappingException.php │ │ ├── OClassNotFoundException.php │ │ ├── Proxy │ │ ├── Proxy.php │ │ └── ProxyFactory.php │ │ ├── Repository.php │ │ ├── Types │ │ └── Rid.php │ │ └── UnitOfWork.php │ └── OrientDB │ ├── Binding │ ├── Adapter │ │ ├── CurlClientAdapter.php │ │ ├── CurlClientAdapterResult.php │ │ └── HttpClientAdapterInterface.php │ ├── BindingInterface.php │ ├── BindingParameters.php │ ├── BindingResultInterface.php │ ├── Client │ │ └── Http │ │ │ ├── CurlClient.php │ │ │ ├── CurlClientResponse.php │ │ │ └── EmptyResponseException.php │ ├── HttpBinding.php │ ├── HttpBindingInterface.php │ ├── HttpBindingResultInterface.php │ └── InvalidQueryException.php │ ├── Exception.php │ ├── Graph │ ├── Algorithm │ │ ├── AlgorithmInterface.php │ │ └── Dijkstra.php │ ├── Graph.php │ ├── GraphInterface.php │ ├── Vertex.php │ └── VertexInterface.php │ ├── LogicException.php │ ├── OverflowException.php │ ├── Query │ ├── Command.php │ ├── Command │ │ ├── Create │ │ │ ├── Edge.php │ │ │ ├── Link.php │ │ │ └── Vertex.php │ │ ├── Credential.php │ │ ├── Credential │ │ │ ├── Grant.php │ │ │ └── Revoke.php │ │ ├── CredentialInterface.php │ │ ├── Delete.php │ │ ├── Index.php │ │ ├── Index │ │ │ ├── Count.php │ │ │ ├── Create.php │ │ │ ├── Drop.php │ │ │ ├── Lookup.php │ │ │ ├── Put.php │ │ │ ├── Rebuild.php │ │ │ └── Remove.php │ │ ├── Insert.php │ │ ├── InsertInterface.php │ │ ├── OClass.php │ │ ├── OClass │ │ │ ├── Alter.php │ │ │ ├── Create.php │ │ │ └── Drop.php │ │ ├── OClassInterface.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── Alter.php │ │ │ ├── Create.php │ │ │ └── Drop.php │ │ ├── PropertyInterface.php │ │ ├── Reference │ │ │ ├── Find.php │ │ │ └── FindInterface.php │ │ ├── Select.php │ │ ├── SelectInterface.php │ │ ├── Truncate.php │ │ ├── Truncate │ │ │ ├── Cluster.php │ │ │ ├── OClass.php │ │ │ └── Record.php │ │ ├── Update.php │ │ ├── Update │ │ │ ├── Add.php │ │ │ ├── Put.php │ │ │ └── Remove.php │ │ └── UpdateInterface.php │ ├── CommandInterface.php │ ├── Formatter │ │ ├── Query.php │ │ ├── Query │ │ │ ├── Between.php │ │ │ ├── ClassList.php │ │ │ ├── EmbeddedRegular.php │ │ │ ├── EmbeddedRid.php │ │ │ ├── IndexClass.php │ │ │ ├── Limit.php │ │ │ ├── MapUpdates.php │ │ │ ├── OrderBy.php │ │ │ ├── RebuildIndex.php │ │ │ ├── Regular.php │ │ │ ├── Returns.php │ │ │ ├── Rid.php │ │ │ ├── RidUpdates.php │ │ │ ├── Select.php │ │ │ ├── Skip.php │ │ │ ├── Target.php │ │ │ ├── TokenInterface.php │ │ │ ├── Updates.php │ │ │ ├── Values.php │ │ │ └── Where.php │ │ └── QueryInterface.php │ ├── Query.php │ ├── QueryInterface.php │ ├── TokenNotFoundException.php │ └── Validator │ │ ├── AbstractValidator.php │ │ ├── Escaper.php │ │ ├── Rid.php │ │ ├── ValidationException.php │ │ └── ValidatorInterface.php │ └── Util │ └── Inflector │ └── Cached.php └── test ├── Doctrine ├── ODM │ └── OrientDB │ │ ├── Caster │ │ └── CasterTest.php │ │ ├── Document │ │ └── Stub │ │ │ ├── City.php │ │ │ ├── CityRepository.php │ │ │ └── Contact │ │ │ ├── Address.php │ │ │ └── EmptyAddress.php │ │ ├── Integration │ │ ├── ManagerTest.php │ │ ├── Mapper │ │ │ ├── ClassMetadataFactoryTest.php │ │ │ ├── DataType │ │ │ │ ├── ByteTest.php │ │ │ │ ├── DoubleTest.php │ │ │ │ ├── FloatTest.php │ │ │ │ ├── IntegerTest.php │ │ │ │ ├── LongTest.php │ │ │ │ └── StringTest.php │ │ │ └── Hydration │ │ │ │ └── HydratorTest.php │ │ ├── Proxy │ │ │ └── ProxyFactoryTest.php │ │ └── RepositoryTest.php │ │ ├── ManagerTest.php │ │ ├── Mapper │ │ ├── ClassMetadataTest.php │ │ └── ClusterMapTest.php │ │ ├── RepositoryTest.php │ │ └── bin │ │ └── image.jpg └── OrientDB │ ├── Binding │ ├── BindingParametersTest.php │ ├── Client │ │ └── Http │ │ │ ├── CurlClientResponseTest.php │ │ │ └── CurlClientTest.php │ └── HttpBindingTest.php │ ├── Graph │ ├── Algorithm │ │ └── DijkstraTest.php │ └── GraphTest.php │ ├── Integration │ └── QueryBuilderTest.php │ └── Query │ ├── Command │ ├── Credential │ │ ├── GrantTest.php │ │ └── RevokeTest.php │ ├── Index │ │ ├── CountTest.php │ │ ├── CreateTest.php │ │ ├── DropTest.php │ │ ├── LookupTest.php │ │ ├── PutTest.php │ │ ├── RebuildTest.php │ │ └── RemoveTest.php │ ├── InsertTest.php │ ├── OClass │ │ ├── AlterTest.php │ │ ├── CreateTest.php │ │ └── DropTest.php │ ├── Property │ │ ├── AlterTest.php │ │ ├── CreateTest.php │ │ └── DropTest.php │ ├── Reference │ │ └── FindTest.php │ ├── SelectTest.php │ └── Truncate │ │ ├── ClusterTest.php │ │ ├── OClassTest.php │ │ └── RecordTest.php │ ├── CommandTest.php │ ├── FormatterTest.php │ ├── QueryTest.php │ └── Validator │ ├── RidTest.php │ └── ValidationTest.php ├── Integration ├── Document │ ├── Address.php │ ├── Comment.php │ ├── Country.php │ ├── MapPoint.php │ ├── ORole.php │ ├── Post.php │ └── Profile.php └── fixtures │ └── load.php ├── PHPUnit ├── TestCase.php └── bootstrap.php └── proxies └── Doctrine └── OrientDB └── Proxy └── README.md /.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/.doctrine-project.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orientdb-odm/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- 1 |