├── .env.example ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docker-compose-neo4j-4.yml ├── docker-compose.yml ├── out └── .gitignore ├── phpunit.coverage.xml.dist ├── psalm.xml ├── rector.php ├── src ├── Authentication │ ├── Authenticate.php │ ├── BasicAuth.php │ ├── KerberosAuth.php │ ├── NoAuth.php │ └── OpenIDConnectAuth.php ├── Basic │ ├── Client.php │ ├── Driver.php │ ├── Session.php │ └── UnmanagedTransaction.php ├── Bolt │ ├── BoltConnection.php │ ├── BoltDriver.php │ ├── BoltMessageFactory.php │ ├── BoltResult.php │ ├── BoltUnmanagedTransaction.php │ ├── Connection.php │ ├── ConnectionPool.php │ ├── Messages │ │ ├── BoltBeginMessage.php │ │ ├── BoltCommitMessage.php │ │ ├── BoltDiscardMessage.php │ │ ├── BoltGoodbyeMessage.php │ │ ├── BoltHelloMessage.php │ │ ├── BoltLogoffMessage.php │ │ ├── BoltLogonMessage.php │ │ ├── BoltPullMessage.php │ │ ├── BoltResetMessage.php │ │ ├── BoltRollbackMessage.php │ │ └── BoltRunMessage.php │ ├── ProtocolFactory.php │ ├── Session.php │ ├── SocketConnectionFactory.php │ ├── SslConfigurationFactory.php │ ├── StreamConnectionFactory.php │ ├── SystemWideConnectionFactory.php │ └── UriConfiguration.php ├── BoltFactory.php ├── Client.php ├── ClientBuilder.php ├── Common │ ├── Cache.php │ ├── ConnectionConfiguration.php │ ├── DNSAddressResolver.php │ ├── DriverSetupManager.php │ ├── GeneratorHelper.php │ ├── Neo4jLogger.php │ ├── Resolvable.php │ ├── SemaphoreFactory.php │ ├── SingleThreadedSemaphore.php │ ├── SysVSemaphore.php │ └── Uri.php ├── Contracts │ ├── AddressResolverInterface.php │ ├── AuthenticateInterface.php │ ├── BasicConnectionFactoryInterface.php │ ├── BoltConvertibleInterface.php │ ├── BoltMessage.php │ ├── ClientInterface.php │ ├── ConnectionInterface.php │ ├── ConnectionPoolInterface.php │ ├── CypherSequence.php │ ├── DriverInterface.php │ ├── HasPropertiesInterface.php │ ├── PointInterface.php │ ├── SemaphoreFactoryInterface.php │ ├── SemaphoreInterface.php │ ├── SessionInterface.php │ ├── TransactionInterface.php │ └── UnmanagedTransactionInterface.php ├── Databags │ ├── Bookmark.php │ ├── BookmarkHolder.php │ ├── ConnectionRequestData.php │ ├── DatabaseInfo.php │ ├── DriverConfiguration.php │ ├── DriverSetup.php │ ├── Neo4jError.php │ ├── Notification.php │ ├── Pair.php │ ├── Plan.php │ ├── PlanArguments.php │ ├── Position.php │ ├── ProfiledQueryPlan.php │ ├── ResultSummary.php │ ├── ServerInfo.php │ ├── SessionConfiguration.php │ ├── SslConfiguration.php │ ├── Statement.php │ ├── SummarizedResult.php │ ├── SummaryCounters.php │ └── TransactionConfiguration.php ├── DriverFactory.php ├── Enum │ ├── AccessMode.php │ ├── ConnectionProtocol.php │ ├── QueryTypeEnum.php │ ├── RoutingRoles.php │ ├── SslMode.php │ └── TransactionState.php ├── Exception │ ├── ConnectionPoolException.php │ ├── InvalidCacheArgumentException.php │ ├── Neo4jException.php │ ├── PropertyDoesNotExistException.php │ ├── RuntimeTypeException.php │ ├── SSLConnectionException.php │ ├── TimeoutException.php │ ├── TransactionException.php │ └── UnsupportedScheme.php ├── Formatter │ ├── Specialised │ │ └── BoltOGMTranslator.php │ └── SummarizedResultFormatter.php ├── Neo4j │ ├── Neo4jConnectionPool.php │ ├── Neo4jDriver.php │ └── RoutingTable.php ├── ParameterHelper.php ├── TypeCaster.php └── Types │ ├── Abstract3DPoint.php │ ├── AbstractCypherObject.php │ ├── AbstractPoint.php │ ├── AbstractPropertyObject.php │ ├── Cartesian3DPoint.php │ ├── CartesianPoint.php │ ├── CypherList.php │ ├── CypherMap.php │ ├── CypherSequenceTrait.php │ ├── Date.php │ ├── DateTime.php │ ├── DateTimeZoneId.php │ ├── Duration.php │ ├── LocalDateTime.php │ ├── LocalTime.php │ ├── Node.php │ ├── Path.php │ ├── Relationship.php │ ├── Time.php │ ├── UnboundRelationship.php │ ├── WGS843DPoint.php │ └── WGS84Point.php └── testkit-backend ├── blacklist.php ├── bookmarkHolder ├── bookmarkHolder, ├── connection, ├── database, ├── features.php ├── index.php ├── register.php ├── src ├── Backend.php ├── Contracts │ ├── RequestHandlerInterface.php │ └── TestkitResponseInterface.php ├── Handlers │ ├── AbstractRunner.php │ ├── CheckMultiDBSupport.php │ ├── DomainNameResolutionCompleted.php │ ├── DriverClose.php │ ├── ExecuteQuery.php │ ├── ForcedRoutingTableUpdate.php │ ├── GetFeatures.php │ ├── GetRoutingTable.php │ ├── GetServerInfo.php │ ├── NewDriver.php │ ├── NewSession.php │ ├── ResolverResolutionCompleted.php │ ├── ResultConsume.php │ ├── ResultNext.php │ ├── ResultSingle.php │ ├── RetryableNegative.php │ ├── RetryablePositive.php │ ├── SessionBeginTransaction.php │ ├── SessionClose.php │ ├── SessionLastBookmarks.php │ ├── SessionReadTransaction.php │ ├── SessionRun.php │ ├── SessionWriteTransaction.php │ ├── StartTest.php │ ├── TransactionCommit.php │ ├── TransactionRollback.php │ ├── TransactionRun.php │ └── VerifyConnectivity.php ├── MainRepository.php ├── Request.php ├── RequestFactory.php ├── Requests │ ├── AuthorizationTokenRequest.php │ ├── CheckMultiDBSupportRequest.php │ ├── DomainNameResolutionCompletedRequest.php │ ├── DriverCloseRequest.php │ ├── ExecuteQueryRequest.php │ ├── ForcedRoutingTableUpdateRequest.php │ ├── GetFeaturesRequest.php │ ├── GetRoutingTableRequest.php │ ├── GetServerInfoRequest.php │ ├── NewDriverRequest.php │ ├── NewSessionRequest.php │ ├── ResolverResolutionCompletedRequest.php │ ├── ResultConsumeRequest.php │ ├── ResultNextRequest.php │ ├── ResultSingleRequest.php │ ├── RetryableNegativeRequest.php │ ├── RetryablePositiveRequest.php │ ├── SessionBeginTransactionRequest.php │ ├── SessionCloseRequest.php │ ├── SessionLastBookmarksRequest.php │ ├── SessionReadTransactionRequest.php │ ├── SessionRunRequest.php │ ├── SessionWriteTransactionRequest.php │ ├── StartTestRequest.php │ ├── TransactionCommitRequest.php │ ├── TransactionRollbackRequest.php │ ├── TransactionRunRequest.php │ └── VerifyConnectivityRequest.php ├── Responses │ ├── BackendErrorResponse.php │ ├── BookmarksResponse.php │ ├── DomainNameResolutionRequiredResponse.php │ ├── DriverErrorResponse.php │ ├── DriverResponse.php │ ├── EagerResultResponse.php │ ├── FeatureListResponse.php │ ├── FrontendErrorResponse.php │ ├── MultiDBSupportResponse.php │ ├── NullRecordResponse.php │ ├── RecordResponse.php │ ├── ResolverResolutionRequiredResponse.php │ ├── ResultResponse.php │ ├── RetryableDoneResponse.php │ ├── RetryableTryResponse.php │ ├── RoutingTableResponse.php │ ├── RunTestResponse.php │ ├── ServerInfoResponse.php │ ├── SessionResponse.php │ ├── SkipTestResponse.php │ ├── SummaryResponse.php │ ├── TransactionResponse.php │ └── Types │ │ ├── CypherNode.php │ │ ├── CypherObject.php │ │ ├── CypherPath.php │ │ └── CypherRelationship.php └── Socket.php ├── state └── testkit.sh /.env.example: -------------------------------------------------------------------------------- 1 | PHP_VERSION=8.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose-neo4j-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/docker-compose-neo4j-4.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /out/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /phpunit.coverage.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/phpunit.coverage.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/rector.php -------------------------------------------------------------------------------- /src/Authentication/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Authentication/Authenticate.php -------------------------------------------------------------------------------- /src/Authentication/BasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Authentication/BasicAuth.php -------------------------------------------------------------------------------- /src/Authentication/KerberosAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Authentication/KerberosAuth.php -------------------------------------------------------------------------------- /src/Authentication/NoAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Authentication/NoAuth.php -------------------------------------------------------------------------------- /src/Authentication/OpenIDConnectAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Authentication/OpenIDConnectAuth.php -------------------------------------------------------------------------------- /src/Basic/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Basic/Client.php -------------------------------------------------------------------------------- /src/Basic/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Basic/Driver.php -------------------------------------------------------------------------------- /src/Basic/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Basic/Session.php -------------------------------------------------------------------------------- /src/Basic/UnmanagedTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Basic/UnmanagedTransaction.php -------------------------------------------------------------------------------- /src/Bolt/BoltConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/BoltConnection.php -------------------------------------------------------------------------------- /src/Bolt/BoltDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/BoltDriver.php -------------------------------------------------------------------------------- /src/Bolt/BoltMessageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/BoltMessageFactory.php -------------------------------------------------------------------------------- /src/Bolt/BoltResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/BoltResult.php -------------------------------------------------------------------------------- /src/Bolt/BoltUnmanagedTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/BoltUnmanagedTransaction.php -------------------------------------------------------------------------------- /src/Bolt/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Connection.php -------------------------------------------------------------------------------- /src/Bolt/ConnectionPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/ConnectionPool.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltBeginMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltBeginMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltCommitMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltCommitMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltDiscardMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltDiscardMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltGoodbyeMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltGoodbyeMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltHelloMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltHelloMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltLogoffMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltLogoffMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltLogonMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltLogonMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltPullMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltPullMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltResetMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltResetMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltRollbackMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltRollbackMessage.php -------------------------------------------------------------------------------- /src/Bolt/Messages/BoltRunMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Messages/BoltRunMessage.php -------------------------------------------------------------------------------- /src/Bolt/ProtocolFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/ProtocolFactory.php -------------------------------------------------------------------------------- /src/Bolt/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/Session.php -------------------------------------------------------------------------------- /src/Bolt/SocketConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/SocketConnectionFactory.php -------------------------------------------------------------------------------- /src/Bolt/SslConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/SslConfigurationFactory.php -------------------------------------------------------------------------------- /src/Bolt/StreamConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/StreamConnectionFactory.php -------------------------------------------------------------------------------- /src/Bolt/SystemWideConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/SystemWideConnectionFactory.php -------------------------------------------------------------------------------- /src/Bolt/UriConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Bolt/UriConfiguration.php -------------------------------------------------------------------------------- /src/BoltFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/BoltFactory.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/ClientBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/ClientBuilder.php -------------------------------------------------------------------------------- /src/Common/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/Cache.php -------------------------------------------------------------------------------- /src/Common/ConnectionConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/ConnectionConfiguration.php -------------------------------------------------------------------------------- /src/Common/DNSAddressResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/DNSAddressResolver.php -------------------------------------------------------------------------------- /src/Common/DriverSetupManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/DriverSetupManager.php -------------------------------------------------------------------------------- /src/Common/GeneratorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/GeneratorHelper.php -------------------------------------------------------------------------------- /src/Common/Neo4jLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/Neo4jLogger.php -------------------------------------------------------------------------------- /src/Common/Resolvable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/Resolvable.php -------------------------------------------------------------------------------- /src/Common/SemaphoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/SemaphoreFactory.php -------------------------------------------------------------------------------- /src/Common/SingleThreadedSemaphore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/SingleThreadedSemaphore.php -------------------------------------------------------------------------------- /src/Common/SysVSemaphore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/SysVSemaphore.php -------------------------------------------------------------------------------- /src/Common/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Common/Uri.php -------------------------------------------------------------------------------- /src/Contracts/AddressResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/AddressResolverInterface.php -------------------------------------------------------------------------------- /src/Contracts/AuthenticateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/AuthenticateInterface.php -------------------------------------------------------------------------------- /src/Contracts/BasicConnectionFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/BasicConnectionFactoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/BoltConvertibleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/BoltConvertibleInterface.php -------------------------------------------------------------------------------- /src/Contracts/BoltMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/BoltMessage.php -------------------------------------------------------------------------------- /src/Contracts/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/ClientInterface.php -------------------------------------------------------------------------------- /src/Contracts/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Contracts/ConnectionPoolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/ConnectionPoolInterface.php -------------------------------------------------------------------------------- /src/Contracts/CypherSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/CypherSequence.php -------------------------------------------------------------------------------- /src/Contracts/DriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/DriverInterface.php -------------------------------------------------------------------------------- /src/Contracts/HasPropertiesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/HasPropertiesInterface.php -------------------------------------------------------------------------------- /src/Contracts/PointInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/PointInterface.php -------------------------------------------------------------------------------- /src/Contracts/SemaphoreFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/SemaphoreFactoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/SemaphoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/SemaphoreInterface.php -------------------------------------------------------------------------------- /src/Contracts/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/SessionInterface.php -------------------------------------------------------------------------------- /src/Contracts/TransactionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/TransactionInterface.php -------------------------------------------------------------------------------- /src/Contracts/UnmanagedTransactionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Contracts/UnmanagedTransactionInterface.php -------------------------------------------------------------------------------- /src/Databags/Bookmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Bookmark.php -------------------------------------------------------------------------------- /src/Databags/BookmarkHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/BookmarkHolder.php -------------------------------------------------------------------------------- /src/Databags/ConnectionRequestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/ConnectionRequestData.php -------------------------------------------------------------------------------- /src/Databags/DatabaseInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/DatabaseInfo.php -------------------------------------------------------------------------------- /src/Databags/DriverConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/DriverConfiguration.php -------------------------------------------------------------------------------- /src/Databags/DriverSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/DriverSetup.php -------------------------------------------------------------------------------- /src/Databags/Neo4jError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Neo4jError.php -------------------------------------------------------------------------------- /src/Databags/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Notification.php -------------------------------------------------------------------------------- /src/Databags/Pair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Pair.php -------------------------------------------------------------------------------- /src/Databags/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Plan.php -------------------------------------------------------------------------------- /src/Databags/PlanArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/PlanArguments.php -------------------------------------------------------------------------------- /src/Databags/Position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Position.php -------------------------------------------------------------------------------- /src/Databags/ProfiledQueryPlan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/ProfiledQueryPlan.php -------------------------------------------------------------------------------- /src/Databags/ResultSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/ResultSummary.php -------------------------------------------------------------------------------- /src/Databags/ServerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/ServerInfo.php -------------------------------------------------------------------------------- /src/Databags/SessionConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/SessionConfiguration.php -------------------------------------------------------------------------------- /src/Databags/SslConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/SslConfiguration.php -------------------------------------------------------------------------------- /src/Databags/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/Statement.php -------------------------------------------------------------------------------- /src/Databags/SummarizedResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/SummarizedResult.php -------------------------------------------------------------------------------- /src/Databags/SummaryCounters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/SummaryCounters.php -------------------------------------------------------------------------------- /src/Databags/TransactionConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Databags/TransactionConfiguration.php -------------------------------------------------------------------------------- /src/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/DriverFactory.php -------------------------------------------------------------------------------- /src/Enum/AccessMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/AccessMode.php -------------------------------------------------------------------------------- /src/Enum/ConnectionProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/ConnectionProtocol.php -------------------------------------------------------------------------------- /src/Enum/QueryTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/QueryTypeEnum.php -------------------------------------------------------------------------------- /src/Enum/RoutingRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/RoutingRoles.php -------------------------------------------------------------------------------- /src/Enum/SslMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/SslMode.php -------------------------------------------------------------------------------- /src/Enum/TransactionState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Enum/TransactionState.php -------------------------------------------------------------------------------- /src/Exception/ConnectionPoolException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/ConnectionPoolException.php -------------------------------------------------------------------------------- /src/Exception/InvalidCacheArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/InvalidCacheArgumentException.php -------------------------------------------------------------------------------- /src/Exception/Neo4jException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/Neo4jException.php -------------------------------------------------------------------------------- /src/Exception/PropertyDoesNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/PropertyDoesNotExistException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/RuntimeTypeException.php -------------------------------------------------------------------------------- /src/Exception/SSLConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/SSLConnectionException.php -------------------------------------------------------------------------------- /src/Exception/TimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/TimeoutException.php -------------------------------------------------------------------------------- /src/Exception/TransactionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/TransactionException.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Exception/UnsupportedScheme.php -------------------------------------------------------------------------------- /src/Formatter/Specialised/BoltOGMTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Formatter/Specialised/BoltOGMTranslator.php -------------------------------------------------------------------------------- /src/Formatter/SummarizedResultFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Formatter/SummarizedResultFormatter.php -------------------------------------------------------------------------------- /src/Neo4j/Neo4jConnectionPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Neo4j/Neo4jConnectionPool.php -------------------------------------------------------------------------------- /src/Neo4j/Neo4jDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Neo4j/Neo4jDriver.php -------------------------------------------------------------------------------- /src/Neo4j/RoutingTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Neo4j/RoutingTable.php -------------------------------------------------------------------------------- /src/ParameterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/ParameterHelper.php -------------------------------------------------------------------------------- /src/TypeCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/TypeCaster.php -------------------------------------------------------------------------------- /src/Types/Abstract3DPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Abstract3DPoint.php -------------------------------------------------------------------------------- /src/Types/AbstractCypherObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/AbstractCypherObject.php -------------------------------------------------------------------------------- /src/Types/AbstractPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/AbstractPoint.php -------------------------------------------------------------------------------- /src/Types/AbstractPropertyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/AbstractPropertyObject.php -------------------------------------------------------------------------------- /src/Types/Cartesian3DPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Cartesian3DPoint.php -------------------------------------------------------------------------------- /src/Types/CartesianPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/CartesianPoint.php -------------------------------------------------------------------------------- /src/Types/CypherList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/CypherList.php -------------------------------------------------------------------------------- /src/Types/CypherMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/CypherMap.php -------------------------------------------------------------------------------- /src/Types/CypherSequenceTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/CypherSequenceTrait.php -------------------------------------------------------------------------------- /src/Types/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Date.php -------------------------------------------------------------------------------- /src/Types/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/DateTime.php -------------------------------------------------------------------------------- /src/Types/DateTimeZoneId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/DateTimeZoneId.php -------------------------------------------------------------------------------- /src/Types/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Duration.php -------------------------------------------------------------------------------- /src/Types/LocalDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/LocalDateTime.php -------------------------------------------------------------------------------- /src/Types/LocalTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/LocalTime.php -------------------------------------------------------------------------------- /src/Types/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Node.php -------------------------------------------------------------------------------- /src/Types/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Path.php -------------------------------------------------------------------------------- /src/Types/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Relationship.php -------------------------------------------------------------------------------- /src/Types/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/Time.php -------------------------------------------------------------------------------- /src/Types/UnboundRelationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/UnboundRelationship.php -------------------------------------------------------------------------------- /src/Types/WGS843DPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/WGS843DPoint.php -------------------------------------------------------------------------------- /src/Types/WGS84Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/src/Types/WGS84Point.php -------------------------------------------------------------------------------- /testkit-backend/blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/blacklist.php -------------------------------------------------------------------------------- /testkit-backend/bookmarkHolder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testkit-backend/bookmarkHolder,: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testkit-backend/connection,: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testkit-backend/database,: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testkit-backend/features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/features.php -------------------------------------------------------------------------------- /testkit-backend/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/index.php -------------------------------------------------------------------------------- /testkit-backend/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/register.php -------------------------------------------------------------------------------- /testkit-backend/src/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Backend.php -------------------------------------------------------------------------------- /testkit-backend/src/Contracts/RequestHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Contracts/RequestHandlerInterface.php -------------------------------------------------------------------------------- /testkit-backend/src/Contracts/TestkitResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Contracts/TestkitResponseInterface.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/AbstractRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/AbstractRunner.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/CheckMultiDBSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/CheckMultiDBSupport.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/DomainNameResolutionCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/DomainNameResolutionCompleted.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/DriverClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/DriverClose.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ExecuteQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ExecuteQuery.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ForcedRoutingTableUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ForcedRoutingTableUpdate.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/GetFeatures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/GetFeatures.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/GetRoutingTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/GetRoutingTable.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/GetServerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/GetServerInfo.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/NewDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/NewDriver.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/NewSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/NewSession.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ResolverResolutionCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ResolverResolutionCompleted.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ResultConsume.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ResultConsume.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ResultNext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ResultNext.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/ResultSingle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/ResultSingle.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/RetryableNegative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/RetryableNegative.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/RetryablePositive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/RetryablePositive.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionBeginTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionBeginTransaction.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionClose.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionLastBookmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionLastBookmarks.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionReadTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionReadTransaction.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionRun.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/SessionWriteTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/SessionWriteTransaction.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/StartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/StartTest.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/TransactionCommit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/TransactionCommit.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/TransactionRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/TransactionRollback.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/TransactionRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/TransactionRun.php -------------------------------------------------------------------------------- /testkit-backend/src/Handlers/VerifyConnectivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Handlers/VerifyConnectivity.php -------------------------------------------------------------------------------- /testkit-backend/src/MainRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/MainRepository.php -------------------------------------------------------------------------------- /testkit-backend/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Request.php -------------------------------------------------------------------------------- /testkit-backend/src/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/RequestFactory.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/AuthorizationTokenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/AuthorizationTokenRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/CheckMultiDBSupportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/CheckMultiDBSupportRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/DomainNameResolutionCompletedRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/DomainNameResolutionCompletedRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/DriverCloseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/DriverCloseRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ExecuteQueryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ExecuteQueryRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ForcedRoutingTableUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ForcedRoutingTableUpdateRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/GetFeaturesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/GetFeaturesRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/GetRoutingTableRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/GetRoutingTableRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/GetServerInfoRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/GetServerInfoRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/NewDriverRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/NewDriverRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/NewSessionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/NewSessionRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ResolverResolutionCompletedRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ResolverResolutionCompletedRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ResultConsumeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ResultConsumeRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ResultNextRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ResultNextRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/ResultSingleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/ResultSingleRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/RetryableNegativeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/RetryableNegativeRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/RetryablePositiveRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/RetryablePositiveRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionBeginTransactionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionBeginTransactionRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionCloseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionCloseRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionLastBookmarksRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionLastBookmarksRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionReadTransactionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionReadTransactionRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionRunRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionRunRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/SessionWriteTransactionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/SessionWriteTransactionRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/StartTestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/StartTestRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/TransactionCommitRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/TransactionCommitRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/TransactionRollbackRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/TransactionRollbackRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/TransactionRunRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/TransactionRunRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Requests/VerifyConnectivityRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Requests/VerifyConnectivityRequest.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/BackendErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/BackendErrorResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/BookmarksResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/BookmarksResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/DomainNameResolutionRequiredResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/DomainNameResolutionRequiredResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/DriverErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/DriverErrorResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/DriverResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/DriverResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/EagerResultResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/EagerResultResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/FeatureListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/FeatureListResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/FrontendErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/FrontendErrorResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/MultiDBSupportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/MultiDBSupportResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/NullRecordResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/NullRecordResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/RecordResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/RecordResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/ResolverResolutionRequiredResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/ResolverResolutionRequiredResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/ResultResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/ResultResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/RetryableDoneResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/RetryableDoneResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/RetryableTryResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/RetryableTryResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/RoutingTableResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/RoutingTableResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/RunTestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/RunTestResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/ServerInfoResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/ServerInfoResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/SessionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/SessionResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/SkipTestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/SkipTestResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/SummaryResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/SummaryResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/TransactionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/TransactionResponse.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/Types/CypherNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/Types/CypherNode.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/Types/CypherObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/Types/CypherObject.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/Types/CypherPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/Types/CypherPath.php -------------------------------------------------------------------------------- /testkit-backend/src/Responses/Types/CypherRelationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Responses/Types/CypherRelationship.php -------------------------------------------------------------------------------- /testkit-backend/src/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/src/Socket.php -------------------------------------------------------------------------------- /testkit-backend/state: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testkit-backend/testkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-php/neo4j-php-client/HEAD/testkit-backend/testkit.sh --------------------------------------------------------------------------------