Skip to content

Commit 5e36e22

Browse files
committed
removed php ds from dependencies
1 parent 7800560 commit 5e36e22

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"psr/http-factory": "^1.0",
3131
"psr/http-client": "^1.0",
3232
"php-http/message": "^1.0",
33-
"php-ds/php-ds": "1.*",
3433
"php-http/message-factory": "^1.0",
3534
"stefanak-michal/bolt": "^2.5",
3635
"symfony/polyfill-php80": "^1.2"

docker/Dockerfile-php-7.4

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ RUN apt-get update && apt-get install -y \
77
libzip-dev \
88
zip \
99
unzip \
10-
&& docker-php-ext-install -j$(nproc) gd sockets bcmath \
11-
&& pecl install ds \
12-
&& docker-php-ext-enable ds
10+
&& docker-php-ext-install -j$(nproc) gd sockets bcmath
1311

1412
ARG WITH_XDEBUG=false
1513

docker/Dockerfile-php-8.0

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ RUN apt-get update && apt-get install -y \
77
libzip-dev \
88
zip \
99
unzip \
10-
&& docker-php-ext-install -j$(nproc) gd sockets bcmath \
11-
&& pecl install ds \
12-
&& docker-php-ext-enable ds
10+
&& docker-php-ext-install -j$(nproc) gd sockets bcmath
1311

1412
ARG WITH_XDEBUG=false
1513

src/Databags/Pair.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Laudis\Neo4j\Databags;
4+
5+
class Pair
6+
{
7+
8+
}

0 commit comments

Comments
 (0)