Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "plumtreesystems/neo4j-php-client",
"name": "tomswinkels/neo4j-php-client",
"type": "library",
"description": "Neo4j-PHP-Client is the most advanced PHP Client for Neo4j",
"keywords": [
Expand Down Expand Up @@ -27,12 +27,12 @@
"graphaware/neo4j-common": "^3.4",
"symfony/event-dispatcher": "^4.0 || ^5.0",
"myclabs/php-enum": "^1.4",
"php-http/httplug": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/client-common": "^1.0",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0",
"php-http/guzzle6-adapter": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"plumtreesystems/neo4j-bolt": "^4.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/HttpDriver/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

use GraphAware\Common\Connection\BaseConfiguration;
use GraphAware\Common\Driver\DriverInterface;
use Http\Adapter\Guzzle6\Client;
use Http\Adapter\Guzzle7\Client;

class Driver implements DriverInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/HttpDriver/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use GraphAware\Neo4j\Client\Exception\Neo4jException;
use GraphAware\Neo4j\Client\Formatter\ResponseFormatter;
use GuzzleHttp\Client as GuzzleClient;
use Http\Adapter\Guzzle6\Client;
use Http\Adapter\Guzzle7\Client;
use Http\Client\Common\Plugin\ErrorPlugin;
use Http\Client\Common\PluginClient;
use Http\Client\Exception\HttpException;
Expand Down Expand Up @@ -200,7 +200,7 @@ public function prepareRequest(Pipeline $pipeline)
'statements' => $statements,
]);
$headers = [
'X-Stream' => true,
// 'X-Stream' => true,
'Content-Type' => 'application/json',
];

Expand Down Expand Up @@ -279,7 +279,7 @@ public function pushToTransaction($transactionId, array $statementsStack)
}

$headers = [
'X-Stream' => true,
// 'X-Stream' => true,
'Content-Type' => 'application/json',
];

Expand Down