Skip to content

Commit

Permalink
Added missing files to the git repository
Browse files Browse the repository at this point in the history
  • Loading branch information
gplanchat committed Sep 29, 2020
1 parent 171c77f commit 0ce6f17
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN set -ex\
nodejs \
npm \
docker \
openssh \
&& update-ca-certificates \
&& apk add --virtual .build-deps \
autoconf \
Expand All @@ -34,6 +35,8 @@ RUN set -ex\
&& apk add --update icu-dev icu \
&& docker-php-ext-configure intl \
&& docker-php-ext-install intl \
&& docker-php-ext-configure pcntl \
&& docker-php-ext-install pcntl \
&& docker-php-source extract \
&& pecl install xdebug-2.9.0 \
&& docker-php-ext-enable xdebug \
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
- ./environments:/environments
- ./compose:/compose
- /var/run/docker.sock:/var/run/docker.sock
- $HOME/.ssh:/root/.ssh
- $HOME/.docker:/opt/docker/.docker
environment:
- 'PHP_IDE_CONFIG=serverName=Docker'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
date.timezone=UTC
4 changes: 4 additions & 0 deletions environments/native/[email protected]/cli/config/opcache.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
opcache.enable=1
opcache.enable_cli=1
opcache.jit_buffer_size=32M
opcache.jit=1235
4 changes: 4 additions & 0 deletions environments/native/[email protected]/fpm/config/opcache.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
opcache.enable=1
opcache.enable_cli=1
opcache.jit_buffer_size=32M
opcache.jit=1235
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[xdebug]
xdebug.max_nesting_level=2048
xdebug.remote_enable=1
xdebug.remote_connect_back=0
xdebug.remoteport=9000
xdebug.remote_host=host.docker.internal
xdebug.idekey=PHPSTORM
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[xdebug]
xdebug.max_nesting_level=2048
xdebug.remote_enable=1
xdebug.remote_connect_back=0
xdebug.remoteport=9000
xdebug.remote_host=host.docker.internal
xdebug.idekey=PHPSTORM
2 changes: 2 additions & 0 deletions src/Domain/Packaging/Context/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

namespace Kiboko\Cloud\Domain\Packaging\Context;

use Kiboko\Cloud\Domain\Packaging\Placeholder;

final class Context implements ContextInterface, \IteratorAggregate
{
use ContextTrait;
Expand Down

0 comments on commit 0ce6f17

Please sign in to comment.