├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── memgraph.yml │ ├── neo4j.2025.yml │ ├── neo4j.4.4.yml │ ├── neo4j.5.yml │ └── no-db.yml ├── .gitignore ├── .well-known └── funding-manifest-urls ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Bolt.php ├── autoload.php ├── connection │ ├── AConnection.php │ ├── IConnection.php │ ├── PStreamSocket.php │ ├── Socket.php │ └── StreamSocket.php ├── enum │ ├── Message.php │ ├── ServerState.php │ └── Signature.php ├── error │ ├── BoltException.php │ ├── ConnectException.php │ ├── ConnectionTimeoutException.php │ ├── PackException.php │ └── UnpackException.php ├── helpers │ ├── CacheProvider.php │ └── FileCache.php ├── packstream │ ├── Bytes.php │ ├── IPackDictionaryGenerator.php │ ├── IPackListGenerator.php │ ├── IPacker.php │ ├── IUnpacker.php │ └── v1 │ │ ├── Packer.php │ │ └── Unpacker.php └── protocol │ ├── AProtocol.php │ ├── IStructure.php │ ├── Response.php │ ├── V1.php │ ├── V2.php │ ├── V3.php │ ├── V4.php │ ├── V4_1.php │ ├── V4_2.php │ ├── V4_3.php │ ├── V4_4.php │ ├── V5.php │ ├── V5_1.php │ ├── V5_2.php │ ├── V5_3.php │ ├── V5_4.php │ ├── V5_6.php │ ├── V5_7.php │ ├── V5_8.php │ ├── V6.php │ ├── v1 │ ├── AckFailureMessage.php │ ├── AvailableStructures.php │ ├── DiscardAllMessage.php │ ├── InitMessage.php │ ├── PullAllMessage.php │ ├── ResetMessage.php │ ├── RunMessage.php │ ├── ServerStateTransition.php │ └── structures │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── DateTimeZoneId.php │ │ ├── Duration.php │ │ ├── LocalDateTime.php │ │ ├── LocalTime.php │ │ ├── Node.php │ │ ├── Path.php │ │ ├── Point2D.php │ │ ├── Point3D.php │ │ ├── Relationship.php │ │ ├── Time.php │ │ └── UnboundRelationship.php │ ├── v3 │ ├── BeginMessage.php │ ├── CommitMessage.php │ ├── GoodbyeMessage.php │ ├── HelloMessage.php │ ├── RollbackMessage.php │ ├── RunMessage.php │ └── ServerStateTransition.php │ ├── v4 │ ├── DiscardMessage.php │ ├── PullMessage.php │ └── ServerStateTransition.php │ ├── v4_1 │ └── HelloMessage.php │ ├── v4_3 │ ├── AvailableStructures.php │ └── RouteMessage.php │ ├── v4_4 │ └── RouteMessage.php │ ├── v5 │ ├── AvailableStructures.php │ └── structures │ │ ├── DateTime.php │ │ ├── DateTimeZoneId.php │ │ ├── Node.php │ │ ├── Relationship.php │ │ └── UnboundRelationship.php │ ├── v5_1 │ ├── HelloMessage.php │ ├── LogoffMessage.php │ ├── LogonMessage.php │ └── ServerStateTransition.php │ ├── v5_3 │ └── HelloMessage.php │ ├── v5_4 │ └── TelemetryMessage.php │ └── v6 │ ├── AvailableStructures.php │ └── structures │ ├── TypeMarker.php │ └── Vector.php └── tests ├── BoltTest.php ├── MemgraphTest.php ├── PerformanceTest.php ├── TestLayer.php ├── connection └── ConnectionTest.php ├── error └── ErrorsTest.php ├── helpers ├── FileCacheTest.php └── lock.php ├── packstream └── v1 │ ├── BytesTest.php │ ├── PackerTest.php │ ├── UnpackerTest.php │ └── generators │ ├── DictionaryGenerator.php │ ├── ListGenerator.php │ └── RandomDataGenerator.php ├── protocol ├── ProtocolLayer.php ├── V1Test.php ├── V2Test.php ├── V3Test.php ├── V4Test.php ├── V4_1Test.php ├── V4_2Test.php ├── V4_3Test.php ├── V4_4Test.php ├── V5Test.php ├── V5_1Test.php ├── V5_2Test.php ├── V5_3Test.php ├── V5_4Test.php ├── V5_6Test.php ├── V5_7Test.php ├── V5_8Test.php └── V6Test.php └── structures ├── StructureLayer.php ├── V6 └── StructuresTest.php ├── v1 ├── DateTimeTrait.php ├── DateTimeZoneIdTrait.php └── StructuresTest.php ├── v4_3 └── StructuresTest.php └── v5 └── StructuresTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/memgraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/workflows/memgraph.yml -------------------------------------------------------------------------------- /.github/workflows/neo4j.2025.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/workflows/neo4j.2025.yml -------------------------------------------------------------------------------- /.github/workflows/neo4j.4.4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/workflows/neo4j.4.4.yml -------------------------------------------------------------------------------- /.github/workflows/neo4j.5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/workflows/neo4j.5.yml -------------------------------------------------------------------------------- /.github/workflows/no-db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.github/workflows/no-db.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/.well-known/funding-manifest-urls -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Bolt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/Bolt.php -------------------------------------------------------------------------------- /src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/autoload.php -------------------------------------------------------------------------------- /src/connection/AConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/connection/AConnection.php -------------------------------------------------------------------------------- /src/connection/IConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/connection/IConnection.php -------------------------------------------------------------------------------- /src/connection/PStreamSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/connection/PStreamSocket.php -------------------------------------------------------------------------------- /src/connection/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/connection/Socket.php -------------------------------------------------------------------------------- /src/connection/StreamSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/connection/StreamSocket.php -------------------------------------------------------------------------------- /src/enum/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/enum/Message.php -------------------------------------------------------------------------------- /src/enum/ServerState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/enum/ServerState.php -------------------------------------------------------------------------------- /src/enum/Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/enum/Signature.php -------------------------------------------------------------------------------- /src/error/BoltException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/error/BoltException.php -------------------------------------------------------------------------------- /src/error/ConnectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/error/ConnectException.php -------------------------------------------------------------------------------- /src/error/ConnectionTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/error/ConnectionTimeoutException.php -------------------------------------------------------------------------------- /src/error/PackException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/error/PackException.php -------------------------------------------------------------------------------- /src/error/UnpackException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/error/UnpackException.php -------------------------------------------------------------------------------- /src/helpers/CacheProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/helpers/CacheProvider.php -------------------------------------------------------------------------------- /src/helpers/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/helpers/FileCache.php -------------------------------------------------------------------------------- /src/packstream/Bytes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/Bytes.php -------------------------------------------------------------------------------- /src/packstream/IPackDictionaryGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/IPackDictionaryGenerator.php -------------------------------------------------------------------------------- /src/packstream/IPackListGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/IPackListGenerator.php -------------------------------------------------------------------------------- /src/packstream/IPacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/IPacker.php -------------------------------------------------------------------------------- /src/packstream/IUnpacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/IUnpacker.php -------------------------------------------------------------------------------- /src/packstream/v1/Packer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/v1/Packer.php -------------------------------------------------------------------------------- /src/packstream/v1/Unpacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/packstream/v1/Unpacker.php -------------------------------------------------------------------------------- /src/protocol/AProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/AProtocol.php -------------------------------------------------------------------------------- /src/protocol/IStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/IStructure.php -------------------------------------------------------------------------------- /src/protocol/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/Response.php -------------------------------------------------------------------------------- /src/protocol/V1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V1.php -------------------------------------------------------------------------------- /src/protocol/V2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V2.php -------------------------------------------------------------------------------- /src/protocol/V3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V3.php -------------------------------------------------------------------------------- /src/protocol/V4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V4.php -------------------------------------------------------------------------------- /src/protocol/V4_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V4_1.php -------------------------------------------------------------------------------- /src/protocol/V4_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V4_2.php -------------------------------------------------------------------------------- /src/protocol/V4_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V4_3.php -------------------------------------------------------------------------------- /src/protocol/V4_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V4_4.php -------------------------------------------------------------------------------- /src/protocol/V5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5.php -------------------------------------------------------------------------------- /src/protocol/V5_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_1.php -------------------------------------------------------------------------------- /src/protocol/V5_2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_2.php -------------------------------------------------------------------------------- /src/protocol/V5_3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_3.php -------------------------------------------------------------------------------- /src/protocol/V5_4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_4.php -------------------------------------------------------------------------------- /src/protocol/V5_6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_6.php -------------------------------------------------------------------------------- /src/protocol/V5_7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_7.php -------------------------------------------------------------------------------- /src/protocol/V5_8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V5_8.php -------------------------------------------------------------------------------- /src/protocol/V6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/V6.php -------------------------------------------------------------------------------- /src/protocol/v1/AckFailureMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/AckFailureMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/AvailableStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/AvailableStructures.php -------------------------------------------------------------------------------- /src/protocol/v1/DiscardAllMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/DiscardAllMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/InitMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/InitMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/PullAllMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/PullAllMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/ResetMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/ResetMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/RunMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/RunMessage.php -------------------------------------------------------------------------------- /src/protocol/v1/ServerStateTransition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/ServerStateTransition.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Date.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/DateTime.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/DateTimeZoneId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/DateTimeZoneId.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Duration.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/LocalDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/LocalDateTime.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/LocalTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/LocalTime.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Node.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Path.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Point2D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Point2D.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Point3D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Point3D.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Relationship.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/Time.php -------------------------------------------------------------------------------- /src/protocol/v1/structures/UnboundRelationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v1/structures/UnboundRelationship.php -------------------------------------------------------------------------------- /src/protocol/v3/BeginMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/BeginMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/CommitMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/CommitMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/GoodbyeMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/GoodbyeMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/HelloMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/HelloMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/RollbackMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/RollbackMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/RunMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/RunMessage.php -------------------------------------------------------------------------------- /src/protocol/v3/ServerStateTransition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v3/ServerStateTransition.php -------------------------------------------------------------------------------- /src/protocol/v4/DiscardMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4/DiscardMessage.php -------------------------------------------------------------------------------- /src/protocol/v4/PullMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4/PullMessage.php -------------------------------------------------------------------------------- /src/protocol/v4/ServerStateTransition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4/ServerStateTransition.php -------------------------------------------------------------------------------- /src/protocol/v4_1/HelloMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4_1/HelloMessage.php -------------------------------------------------------------------------------- /src/protocol/v4_3/AvailableStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4_3/AvailableStructures.php -------------------------------------------------------------------------------- /src/protocol/v4_3/RouteMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4_3/RouteMessage.php -------------------------------------------------------------------------------- /src/protocol/v4_4/RouteMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v4_4/RouteMessage.php -------------------------------------------------------------------------------- /src/protocol/v5/AvailableStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/AvailableStructures.php -------------------------------------------------------------------------------- /src/protocol/v5/structures/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/structures/DateTime.php -------------------------------------------------------------------------------- /src/protocol/v5/structures/DateTimeZoneId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/structures/DateTimeZoneId.php -------------------------------------------------------------------------------- /src/protocol/v5/structures/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/structures/Node.php -------------------------------------------------------------------------------- /src/protocol/v5/structures/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/structures/Relationship.php -------------------------------------------------------------------------------- /src/protocol/v5/structures/UnboundRelationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5/structures/UnboundRelationship.php -------------------------------------------------------------------------------- /src/protocol/v5_1/HelloMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_1/HelloMessage.php -------------------------------------------------------------------------------- /src/protocol/v5_1/LogoffMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_1/LogoffMessage.php -------------------------------------------------------------------------------- /src/protocol/v5_1/LogonMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_1/LogonMessage.php -------------------------------------------------------------------------------- /src/protocol/v5_1/ServerStateTransition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_1/ServerStateTransition.php -------------------------------------------------------------------------------- /src/protocol/v5_3/HelloMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_3/HelloMessage.php -------------------------------------------------------------------------------- /src/protocol/v5_4/TelemetryMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v5_4/TelemetryMessage.php -------------------------------------------------------------------------------- /src/protocol/v6/AvailableStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v6/AvailableStructures.php -------------------------------------------------------------------------------- /src/protocol/v6/structures/TypeMarker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v6/structures/TypeMarker.php -------------------------------------------------------------------------------- /src/protocol/v6/structures/Vector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/src/protocol/v6/structures/Vector.php -------------------------------------------------------------------------------- /tests/BoltTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/BoltTest.php -------------------------------------------------------------------------------- /tests/MemgraphTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/MemgraphTest.php -------------------------------------------------------------------------------- /tests/PerformanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/PerformanceTest.php -------------------------------------------------------------------------------- /tests/TestLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/TestLayer.php -------------------------------------------------------------------------------- /tests/connection/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/connection/ConnectionTest.php -------------------------------------------------------------------------------- /tests/error/ErrorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/error/ErrorsTest.php -------------------------------------------------------------------------------- /tests/helpers/FileCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/helpers/FileCacheTest.php -------------------------------------------------------------------------------- /tests/helpers/lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/helpers/lock.php -------------------------------------------------------------------------------- /tests/packstream/v1/BytesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/BytesTest.php -------------------------------------------------------------------------------- /tests/packstream/v1/PackerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/PackerTest.php -------------------------------------------------------------------------------- /tests/packstream/v1/UnpackerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/UnpackerTest.php -------------------------------------------------------------------------------- /tests/packstream/v1/generators/DictionaryGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/generators/DictionaryGenerator.php -------------------------------------------------------------------------------- /tests/packstream/v1/generators/ListGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/generators/ListGenerator.php -------------------------------------------------------------------------------- /tests/packstream/v1/generators/RandomDataGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/packstream/v1/generators/RandomDataGenerator.php -------------------------------------------------------------------------------- /tests/protocol/ProtocolLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/ProtocolLayer.php -------------------------------------------------------------------------------- /tests/protocol/V1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V1Test.php -------------------------------------------------------------------------------- /tests/protocol/V2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V2Test.php -------------------------------------------------------------------------------- /tests/protocol/V3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V3Test.php -------------------------------------------------------------------------------- /tests/protocol/V4Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V4Test.php -------------------------------------------------------------------------------- /tests/protocol/V4_1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V4_1Test.php -------------------------------------------------------------------------------- /tests/protocol/V4_2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V4_2Test.php -------------------------------------------------------------------------------- /tests/protocol/V4_3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V4_3Test.php -------------------------------------------------------------------------------- /tests/protocol/V4_4Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V4_4Test.php -------------------------------------------------------------------------------- /tests/protocol/V5Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_1Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_2Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_3Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_4Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_4Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_6Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_6Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_7Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_7Test.php -------------------------------------------------------------------------------- /tests/protocol/V5_8Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V5_8Test.php -------------------------------------------------------------------------------- /tests/protocol/V6Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/protocol/V6Test.php -------------------------------------------------------------------------------- /tests/structures/StructureLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/StructureLayer.php -------------------------------------------------------------------------------- /tests/structures/V6/StructuresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/V6/StructuresTest.php -------------------------------------------------------------------------------- /tests/structures/v1/DateTimeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/v1/DateTimeTrait.php -------------------------------------------------------------------------------- /tests/structures/v1/DateTimeZoneIdTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/v1/DateTimeZoneIdTrait.php -------------------------------------------------------------------------------- /tests/structures/v1/StructuresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/v1/StructuresTest.php -------------------------------------------------------------------------------- /tests/structures/v4_3/StructuresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/v4_3/StructuresTest.php -------------------------------------------------------------------------------- /tests/structures/v5/StructuresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanak-michal/php-bolt-driver/HEAD/tests/structures/v5/StructuresTest.php --------------------------------------------------------------------------------