Skip to content

Commit 0ce6f17

Browse files
committed
Added missing files to the git repository
1 parent 171c77f commit 0ce6f17

File tree

8 files changed

+29
-0
lines changed

8 files changed

+29
-0
lines changed

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ RUN set -ex\
1919
nodejs \
2020
npm \
2121
docker \
22+
openssh \
2223
&& update-ca-certificates \
2324
&& apk add --virtual .build-deps \
2425
autoconf \
@@ -34,6 +35,8 @@ RUN set -ex\
3435
&& apk add --update icu-dev icu \
3536
&& docker-php-ext-configure intl \
3637
&& docker-php-ext-install intl \
38+
&& docker-php-ext-configure pcntl \
39+
&& docker-php-ext-install pcntl \
3740
&& docker-php-source extract \
3841
&& pecl install xdebug-2.9.0 \
3942
&& docker-php-ext-enable xdebug \

docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ services:
1111
- ./environments:/environments
1212
- ./compose:/compose
1313
- /var/run/docker.sock:/var/run/docker.sock
14+
- $HOME/.ssh:/root/.ssh
1415
- $HOME/.docker:/opt/docker/.docker
1516
environment:
1617
- 'PHP_IDE_CONFIG=serverName=Docker'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
date.timezone=UTC
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
opcache.enable=1
2+
opcache.enable_cli=1
3+
opcache.jit_buffer_size=32M
4+
opcache.jit=1235
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
opcache.enable=1
2+
opcache.enable_cli=1
3+
opcache.jit_buffer_size=32M
4+
opcache.jit=1235
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[xdebug]
2+
xdebug.max_nesting_level=2048
3+
xdebug.remote_enable=1
4+
xdebug.remote_connect_back=0
5+
xdebug.remoteport=9000
6+
xdebug.remote_host=host.docker.internal
7+
xdebug.idekey=PHPSTORM
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[xdebug]
2+
xdebug.max_nesting_level=2048
3+
xdebug.remote_enable=1
4+
xdebug.remote_connect_back=0
5+
xdebug.remoteport=9000
6+
xdebug.remote_host=host.docker.internal
7+
xdebug.idekey=PHPSTORM

src/Domain/Packaging/Context/Context.php

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace Kiboko\Cloud\Domain\Packaging\Context;
66

7+
use Kiboko\Cloud\Domain\Packaging\Placeholder;
8+
79
final class Context implements ContextInterface, \IteratorAggregate
810
{
911
use ContextTrait;

0 commit comments

Comments
 (0)