├── .gitignore ├── LICENSE ├── OrientDB ├── Commands │ ├── OrientDBCommandAbstract.php │ ├── OrientDBCommandCommand.php │ ├── OrientDBCommandCommit.php │ ├── OrientDBCommandConfigGet.php │ ├── OrientDBCommandConfigList.php │ ├── OrientDBCommandConfigSet.php │ ├── OrientDBCommandConnect.php │ ├── OrientDBCommandCount.php │ ├── OrientDBCommandDBClose.php │ ├── OrientDBCommandDBCreate.php │ ├── OrientDBCommandDBDelete.php │ ├── OrientDBCommandDBExists.php │ ├── OrientDBCommandDBList.php │ ├── OrientDBCommandDBOpen.php │ ├── OrientDBCommandDataclusterAdd.php │ ├── OrientDBCommandDataclusterCount.php │ ├── OrientDBCommandDataclusterDatarange.php │ ├── OrientDBCommandDataclusterRemove.php │ ├── OrientDBCommandDatasegmentAdd.php │ ├── OrientDBCommandDatasegmentDelete.php │ ├── OrientDBCommandQuery.php │ ├── OrientDBCommandRecordCreate.php │ ├── OrientDBCommandRecordDelete.php │ ├── OrientDBCommandRecordLoad.php │ ├── OrientDBCommandRecordUpdate.php │ ├── OrientDBCommandSelect.php │ ├── OrientDBCommandSelectAsync.php │ ├── OrientDBCommandSelectGremlin.php │ └── OrientDBCommandShutdown.php ├── OrientDB.php ├── OrientDBDataTypes.php ├── OrientDBHelpers.php ├── OrientDBRecord.php ├── OrientDBRecordDecoder.php ├── OrientDBRecordEncoder.php └── OrientDBSocket.php ├── SpeedTest ├── OrientDBRecordSpeedBigTest.php ├── OrientDBRecordSpeedTest.php └── data │ └── CharterofFundamentalRightsoftheEuropeanUnion.txt ├── Tests ├── OrientDBClassBasicTest.php ├── OrientDBCommandCommandTest.php ├── OrientDBCommandCommitTest.php ├── OrientDBCommandConfigGetTest.php ├── OrientDBCommandConfigListTest.php ├── OrientDBCommandConfigSetTest.php ├── OrientDBCommandCountTest.php ├── OrientDBCommandDBCreateTest.php ├── OrientDBCommandDBDeleteTest.php ├── OrientDBCommandDBExistsTest.php ├── OrientDBCommandDBListTest.php ├── OrientDBCommandDBOpenTest.php ├── OrientDBCommandDataclusterAddTest.php ├── OrientDBCommandDataclusterCountTest.php ├── OrientDBCommandDataclusterDatarangeTest.php ├── OrientDBCommandDataclusterRemoveTest.php ├── OrientDBCommandDatasegmentAddTest.php ├── OrientDBCommandDatasegmentDeleteTest.php ├── OrientDBCommandQueryTest.php ├── OrientDBCommandRecordCreateTest.php ├── OrientDBCommandRecordDeleteTest.php ├── OrientDBCommandRecordLoadTest.php ├── OrientDBCommandRecordUpdateTest.php ├── OrientDBCommandSelectAsyncTest.php ├── OrientDBCommandSelectTest.php ├── OrientDBCommandShutdownTest.php ├── OrientDBCommandsBasicTest.php ├── OrientDBConnectTest.php ├── OrientDBConvertComplementTest.php ├── OrientDBDataTest.php ├── OrientDBI64Test.php ├── OrientDBRecordEncoderTest.php ├── OrientDBRecordTest.php ├── OrientDBTypeDateTest.php ├── OrientDBTypeLinkTest.php └── OrientDB_TestCase.php ├── composer.json ├── example.php ├── gremlin.php ├── phpunit.xml ├── readme.markdown └── speedtest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings/ 4 | PHPUnit/ 5 | report/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/LICENSE -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandAbstract.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandCommand.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandCommit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandCommit.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandConfigGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandConfigGet.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandConfigList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandConfigList.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandConfigSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandConfigSet.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandConnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandConnect.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandCount.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBClose.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBCreate.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBDelete.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBExists.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBList.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDBOpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDBOpen.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDataclusterAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDataclusterAdd.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDataclusterCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDataclusterCount.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDataclusterDatarange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDataclusterDatarange.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDataclusterRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDataclusterRemove.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDatasegmentAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDatasegmentAdd.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandDatasegmentDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandDatasegmentDelete.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandQuery.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandRecordCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandRecordCreate.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandRecordDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandRecordDelete.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandRecordLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandRecordLoad.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandRecordUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandRecordUpdate.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandSelect.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandSelectAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandSelectAsync.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandSelectGremlin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandSelectGremlin.php -------------------------------------------------------------------------------- /OrientDB/Commands/OrientDBCommandShutdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/Commands/OrientDBCommandShutdown.php -------------------------------------------------------------------------------- /OrientDB/OrientDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDB.php -------------------------------------------------------------------------------- /OrientDB/OrientDBDataTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBDataTypes.php -------------------------------------------------------------------------------- /OrientDB/OrientDBHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBHelpers.php -------------------------------------------------------------------------------- /OrientDB/OrientDBRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBRecord.php -------------------------------------------------------------------------------- /OrientDB/OrientDBRecordDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBRecordDecoder.php -------------------------------------------------------------------------------- /OrientDB/OrientDBRecordEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBRecordEncoder.php -------------------------------------------------------------------------------- /OrientDB/OrientDBSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/OrientDB/OrientDBSocket.php -------------------------------------------------------------------------------- /SpeedTest/OrientDBRecordSpeedBigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/SpeedTest/OrientDBRecordSpeedBigTest.php -------------------------------------------------------------------------------- /SpeedTest/OrientDBRecordSpeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/SpeedTest/OrientDBRecordSpeedTest.php -------------------------------------------------------------------------------- /SpeedTest/data/CharterofFundamentalRightsoftheEuropeanUnion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/SpeedTest/data/CharterofFundamentalRightsoftheEuropeanUnion.txt -------------------------------------------------------------------------------- /Tests/OrientDBClassBasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBClassBasicTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandCommandTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandCommitTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandConfigGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandConfigGetTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandConfigListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandConfigListTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandConfigSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandConfigSetTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandCountTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDBCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDBCreateTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDBDeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDBDeleteTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDBExistsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDBExistsTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDBListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDBListTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDBOpenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDBOpenTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDataclusterAddTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDataclusterAddTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDataclusterCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDataclusterCountTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDataclusterDatarangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDataclusterDatarangeTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDataclusterRemoveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDataclusterRemoveTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDatasegmentAddTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDatasegmentAddTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandDatasegmentDeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandDatasegmentDeleteTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandQueryTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandRecordCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandRecordCreateTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandRecordDeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandRecordDeleteTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandRecordLoadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandRecordLoadTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandRecordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandRecordUpdateTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandSelectAsyncTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandSelectAsyncTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandSelectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandSelectTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandShutdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandShutdownTest.php -------------------------------------------------------------------------------- /Tests/OrientDBCommandsBasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBCommandsBasicTest.php -------------------------------------------------------------------------------- /Tests/OrientDBConnectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBConnectTest.php -------------------------------------------------------------------------------- /Tests/OrientDBConvertComplementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBConvertComplementTest.php -------------------------------------------------------------------------------- /Tests/OrientDBDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBDataTest.php -------------------------------------------------------------------------------- /Tests/OrientDBI64Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBI64Test.php -------------------------------------------------------------------------------- /Tests/OrientDBRecordEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBRecordEncoderTest.php -------------------------------------------------------------------------------- /Tests/OrientDBRecordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBRecordTest.php -------------------------------------------------------------------------------- /Tests/OrientDBTypeDateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBTypeDateTest.php -------------------------------------------------------------------------------- /Tests/OrientDBTypeLinkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDBTypeLinkTest.php -------------------------------------------------------------------------------- /Tests/OrientDB_TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/Tests/OrientDB_TestCase.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/example.php -------------------------------------------------------------------------------- /gremlin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/gremlin.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/readme.markdown -------------------------------------------------------------------------------- /speedtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonTerekhov/OrientDB-PHP/HEAD/speedtest.php --------------------------------------------------------------------------------