diff --git a/boilerplates/php.dev.boilerplate/README.md b/boilerplates/php.dev.boilerplate/README.md
index 93aa552125ac97aa766df38db7731209e834949d..1fa34fb8143ba2dcfdc3ea7e084a535661bfc116 100644
--- a/boilerplates/php.dev.boilerplate/README.md
+++ b/boilerplates/php.dev.boilerplate/README.md
@@ -27,23 +27,24 @@ $ docker-compose -f docker-compose.yml start
 ### machine(s) php
 
 * un ou plusieurs services php/apache ou php-cli
-* basés sur les images `canals/php`, les tags `:5.6`, `:7.1` et `7.1-cli` sont utilisables
+* basés sur les images `canals/php`, les tags `:latest`, :7.2` et `7.2-cli`, `:7.1` et `7.1-cli`,`:5.6` sont utilisables
    * pour plus de détails, voir la [doc](https://hub.docker.com/r/canals/php/)
 * conseils : utiliser les vhost et les déclarer dans votre `/etc/hosts`
 * attention aux numéros de ports lorsque l'on utilise plusieurs services de même type
-* pour transmettre des variables d'environnement aux containers, utiliser le chapitre env_file et définir 
-  les variables dans le fichier web.env - Typiquement : http_proxy et https_proxy pour l'usage derrière un 
-  proxy 
+* pour transmettre des variables d'environnement aux containers, compléter le chapitre `environment` ou utiliser le chapitre env_file et définir 
+  les variables dans le fichier web.env - 
+* Typiquement : définir les variables http_proxy et https_proxy pour utiliser les conteneurs dans un environnement avec un proxy pour l'accès extérieur. 
 
 ####exemple : service php basé sur apache
 ```
 services:
   web:
     image: canals/php
-    container_name: web.dev.local
     environment:
       - VHOST_HOSTNAME=web.dev.local
       - VHOST_DOCROOT=/var/www/web
+      - http_proxy=http://www-cache:1234
+      - https_proxy=http://www-cache:1234
     ports:
       - "5080:80"
       - "5543:443"
@@ -56,21 +57,21 @@ services:
       - data:/var/www/data
     links :
       - mysql:db
-#      - mongodb:mongo
-#      - mailcatcher:mail
-#      - postgres:pg
+      - mongodb:mongo
+      - mailcatcher:mail
+      - postgres:pg
 ```
 ####exemple : service php-cli avec lancement du serveur embarqué : 
 ```
 services:
   php:
-    image: canals/php:7.1-cli
+    image: canals/php:7.2-cli
     ports:
       - "8800:8000"
     volumes:
      - ./:/var/php
     working_dir: /var/php
-    command: php -S 0.0.0.0:8000 web/index-cli.php
+    command: php -S 0.0.0.0:8000 web/index.php
     links :
       - mysql:db
       - mongo:mongo
@@ -93,19 +94,17 @@ mysql, par exemple dans les services php.
 
 ```
   mysql:
-    image: mysql:5.6
-#   image: mariadb:latest
-    container_name: mysql.dev.local
+    image: mariadb:latest
+#    image: mysql:5.6
     environment:
       - MYSQL_ROOT_PASSWORD=root
       - MYSQL_USER=user
       - MYSQL_PASSWORD=user
     ports:
       - "3603:3306"
-
+      
   adminer:
      image: adminer
-     container_name: adminer.dev.local
      ports:
        - "8080:8080"
      links:
@@ -123,20 +122,18 @@ mysql, par exemple dans les services php.
 ```
   mongodb:
     image: mongo:3.4
-    container_name: mongo.dev.local
     ports:
         - 27017:27017
 
   mongo-express:
      image: mongo-express:latest
-     container_name: mongo_express.dev.local
      ports:
         - "8081:8081"
      links:
         - mongodb:mongo
 ```
 
-###mailcatcher
+### mailcatcher
  MailCatcher est un service de mail qui offre un contexte de test pour les
  fonctionnalités d'envoi de mail d'une application web. MailCatcher est un serveur de mail
  permettant de consulter l'ensemble des messages qui lui sont adressés via une interface web.
@@ -150,7 +147,6 @@ mysql, par exemple dans les services php.
 ```
 mailcatcher:
   image: schickling/mailcatcher
-  container_name: mail.dev.local
   ports:
     - "1080:1080"
     - "1025:1025
diff --git a/boilerplates/php.dev.boilerplate/docker-compose.yml b/boilerplates/php.dev.boilerplate/docker-compose.yml
index d8a9121c264e4b344e43fd884ee2004078fb70ea..025b615857e533a868a720618a9e2847312a2150 100644
--- a/boilerplates/php.dev.boilerplate/docker-compose.yml
+++ b/boilerplates/php.dev.boilerplate/docker-compose.yml
@@ -6,11 +6,12 @@ networks:
 
 services:
   web:
-    image: canals/php
-    container_name: web.dev.local
+    image: canals/php:latest
     environment:
       - VHOST_HOSTNAME=web.dev.local
       - VHOST_DOCROOT=/var/www/web
+#      - http_proxy=http://www-cache:1234
+#      - https_proxy=https://www-cache:1234
     ports:
       - "5080:80"
       - "5543:443"
@@ -21,6 +22,7 @@ services:
       - ./src:/var/www/src
       - ./html:/var/www/html
       - data:/var/www/data
+    working_dir : /var/www/src
     networks:
       - local_network
     links :
@@ -30,7 +32,7 @@ services:
 #      - postgres:pg
 
   php:
-    image: canals/php7.1-cli
+    image: canals/php7.2-cli
     container_name: php.local
     expose:
       - "8000"
@@ -51,11 +53,11 @@ services:
 #      - postgres:pg
 
 #############################
-# mysql + adminer / can be replaced by mariadb
+# mysql/mariadb + adminer / can be replaced by mariadb
 #############################
   mysql:
-    image: mysql:5.6
-#   image: mariadb:latest
+#    image: mysql:5.6
+    image: mariadb:latest
     container_name: mysql.dev.local
     environment:
       - MYSQL_ROOT_PASSWORD=root
@@ -74,8 +76,8 @@ services:
      container_name: adminer.dev.local
      ports:
        - "8080:8080"
-    networks:
-      - local_network
+     networks:
+       - local_network
      links:
        - mysql:db
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.test.yml b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.test.yml
deleted file mode 100644
index 32b32dfc264e141a738e9ff0d1314b8c36b4dd39..0000000000000000000000000000000000000000
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.test.yml
+++ /dev/null
@@ -1,116 +0,0 @@
-version: "3"
-services:
-  web:
-    image: canals/php
-    container_name: web_test
-    environment:
-      - VHOST_HOSTNAME=web.test.local
-      - VHOST_DOCROOT=/var/www/web
-    ports:
-      - "5080:80"
-      - "5543:443"
-    volumes :
-      - ./web:/var/www/web
-      - ./src:/var/www/src
-      - ./html:/var/www/html
-      - data:/var/www/data
-    links :
-      - mysql:db
-      - postgres:pg
-      - mongo:mongo
-      - mail:mail
-
-#############################
-# mysql + adminer / can be replaced by mariadb
-#############################
- mysql:
-   image: mysql:5.6
-   image: mariadb:latest
-   container_name: mysql_test
-   environment:
-     - MYSQL_ROOT_PASSWORD=root
-     - MYSQL_USER=user
-     - MYSQL_PASSWORD=user
-   ports:
-     - "3603:3306"
-
- adminer:
-    image: adminer
-    ports:
-      - "8080:8080"
-    links:
-      - mysql:db
-
-##################################
-# postgres + adminer
-###################################
-  postgres:
-    image: postgres
-    container_name: postgres_test
-    environment :
-      - POSTGRES_PASSWORD = pgroot
-      - POSTGRES_USER = pguser
-    ports:
-      - "5432:5432"
-
-  adminer-pg:
-    image: adminer
-    container_name: adminer_pg_test
-    ports:
-      - "8088:8080"
-    links:
-      - postgres:db
-
-
-##############################################
-# A second php service
-##############################################
-
-#  api:
-#      image: canals/php
-#      container_name: api
-##      environment:
-#       - VHOST_HOSTNAME=api.local
-#       - VHOST_DOCROOT=/var/www/api
-#     ports:
-#       - "6080:80"
-#       - "6443:443"
-#     volumes :
-#       - ./api:/var/www/api
-#       - ./src:/var/www/src
-#       - ./html:/var/www/html
-#     links :
-#        - mysql:db
-
-################################################
-# mongodb & mongo-express
-###############################################
-   mongo:
-     image: mongo:3.4
-     container_name: mongo_test
-     ports:
-         - 27017:27017
-
-   mongo-express:
-        image: mongo-express:latest
-        container_name: mongo_express_test
-        ports:
-          - "8081:8081"
-        links:
-          - mongo:mongo
-
-##############################################
-# mailcatcher
-##############################################
-  mail:
-     image: schickling/mailcatcher
-     container_name: mail_test
-     ports:
-       - "1080:1080"
-
-########################################
-# shared storage : useful for, e.g. sharing
-#   uploaded documents (img, others) between multiple services
-########################################
-volumes:
-   data:
\ No newline at end of file
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose-test-php-cli.yml b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.yml
similarity index 56%
rename from boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose-test-php-cli.yml
rename to boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.yml
index 425babef7976d37a74500b1786a6b5d12b8a18ca..54a3b23a6b76501628b93ef93e5c3c540628ebb0 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose-test-php-cli.yml
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/docker-compose.yml
@@ -5,8 +5,30 @@ networks:
     driver: bridge
 
 services:
+  web:
+    image: canals/php:latest
+    environment:
+      - VHOST_HOSTNAME=web.test.local
+      - VHOST_DOCROOT=/var/www/web
+    ports:
+      - "5080:80"
+      - "5543:443"
+    volumes :
+      - ./web:/var/www/web
+      - ./src:/var/www/src
+      - ./html:/var/www/html
+      - data:/var/www/data
+    working_dir: /var/www/src
+    links :
+      - mysql:db
+      - postgres:pg
+      - mongo:mongo
+      - mail:mail
+    networks:
+      - local_network
+
   php:
-    image: canals/php:7.1-cli
+    image: canals/php:7.2-cli
     expose:
       - "8000"
     ports:
@@ -23,111 +45,84 @@ services:
 #      - mail:mail
 #      - postgres:pg
 
+
 #############################
 # mysql + adminer / can be replaced by mariadb
 #############################
   mysql:
-#    image: mysql:5.6
+    #image: mysql:5.6
     image: mariadb:latest
+    container_name: mysql_test
     environment:
-      - MYSQL_ROOT_PASSWORD=root66
+      - MYSQL_ROOT_PASSWORD=root
       - MYSQL_USER=user
       - MYSQL_PASSWORD=user
-      - MYSQL_DATABASE=mydatab
-    networks:
-      - local_network
     ports:
       - "3603:3306"
-    volumes :
-      - ./sql:/var/sql
+    networks:
+      - local_network
 
   adminer:
     image: adminer
     ports:
       - "8080:8080"
-    networks:
-      - local_network
     links:
       - mysql:db
-
-
-
-##############################################
-# A second php service
-##############################################
-
-#  api:
-#      image: canals/php
-#      container_name: api
-##      environment:
-#       - VHOST_HOSTNAME=api.local
-#       - VHOST_DOCROOT=/var/www/api
-#     ports:
-#       - "6080:80"
-#       - "6443:443"
-#     volumes :
-#       - ./api:/var/www/api
-#       - ./src:/var/www/src
-#       - ./html:/var/www/html
-#     networks:
-#       - local_network
-#     links :
-#        - mysql:db
+    networks:
+      - local_network
 
 ##################################
 # postgres + adminer
 ###################################
-# postgres:
-#   image: postgres
-#   container_name: postgres.local
-#   environment :
-#     - POSTGRES_PASSWORD = pgroot
-#     - POSTGRES_USER = pguser
-#   networks:
-#     - local_network
-#   ports:
-#     - "5432:5432"
+  postgres:
+    image: postgres
+    environment :
+      - POSTGRES_PASSWORD = pgroot
+      - POSTGRES_USER = pguser
+    ports:
+      - "5432:5432"
+    networks:
+      - local_network
+
+  adminer-pg:
+    image: adminer
+    ports:
+      - "8088:8080"
+    links:
+      - postgres:db
+    networks:
+      - local_network
 
-# adminer-pg:
-#   image: adminer
-#   container_name: adminer_pg.dev.local
-#   networks:
-#     - local_network
-#   ports:
-#     - "8088:8080"
-#   links:
-#     - postgres:db
-#
 
 ################################################
 # mongodb & mongo-express
 ###############################################
   mongo:
     image: mongo:3.4
-    networks:
-      - local_network
     ports:
       - 27017:27017
+    networks:
+      - local_network
 
   mongo-express:
     image: mongo-express:latest
-    networks:
-      - local_network
     ports:
       - "8081:8081"
     links:
       - mongo:mongo
+    networks:
+      - local_network
 
 ##############################################
-# mailcatcher
+# mailcatcher : so useful !
 ##############################################
-## mail:
-#    image: schickling/mailcatcher
-#    container_name: mail.dev.local
-#    networks:
-#       - local_network
-#    ports:
-#      - "1080:1080"
+  mail:
+    image: schickling/mailcatcher
+    container_name: mail_test
+    ports:
+      - "1080:1080"
+    networks:
+      - local_network
 
 ########################################
 # shared storage : useful for, e.g. sharing
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/composer.lock b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/composer.lock
index 919b4788bbcf8e08875f0b95621bd49f247d2a3c..0fb58b53cac8d36f08b884c3a0a4621234563ec4 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/composer.lock
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/composer.lock
@@ -1,7 +1,7 @@
 {
     "_readme": [
         "This file locks the dependencies of your project to a known state",
-        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
     "content-hash": "0044c44b9ff99937efd64386a4a1d53d",
@@ -66,16 +66,16 @@
         },
         {
             "name": "swiftmailer/swiftmailer",
-            "version": "v5.4.8",
+            "version": "v5.4.9",
             "source": {
                 "type": "git",
                 "url": "https://github.com/swiftmailer/swiftmailer.git",
-                "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517"
+                "reference": "7ffc1ea296ed14bf8260b6ef11b80208dbadba91"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517",
-                "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517",
+                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/7ffc1ea296ed14bf8260b6ef11b80208dbadba91",
+                "reference": "7ffc1ea296ed14bf8260b6ef11b80208dbadba91",
                 "shasum": ""
             },
             "require": {
@@ -110,13 +110,13 @@
                 }
             ],
             "description": "Swiftmailer, free feature-rich PHP mailer",
-            "homepage": "http://swiftmailer.org",
+            "homepage": "https://swiftmailer.symfony.com",
             "keywords": [
                 "email",
                 "mail",
                 "mailer"
             ],
-            "time": "2017-05-01T15:54:03+00:00"
+            "time": "2018-01-23T07:37:21+00:00"
         }
     ],
     "packages-dev": [],
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/ClassLoader.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/ClassLoader.php
index 2c72175e7723ad0c73fd3154eb0fecc420810448..dc02dfb114fb6af2eacf89407a529c37ab8e7eb8 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/ClassLoader.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/ClassLoader.php
@@ -379,9 +379,9 @@ class ClassLoader
                 $subPath = substr($subPath, 0, $lastPos);
                 $search = $subPath.'\\';
                 if (isset($this->prefixDirsPsr4[$search])) {
+                    $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
                     foreach ($this->prefixDirsPsr4[$search] as $dir) {
-                        $length = $this->prefixLengthsPsr4[$first][$search];
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
+                        if (file_exists($file = $dir . $pathEnd)) {
                             return $file;
                         }
                     }
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/installed.json b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/installed.json
index 0ccbf150e9f283004cbd3f922cf90df957d5a01b..9f5862e0a3465168a01ee36ff19ed2a103f2e204 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/installed.json
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/composer/installed.json
@@ -61,17 +61,17 @@
     },
     {
         "name": "swiftmailer/swiftmailer",
-        "version": "v5.4.8",
-        "version_normalized": "5.4.8.0",
+        "version": "v5.4.9",
+        "version_normalized": "5.4.9.0",
         "source": {
             "type": "git",
             "url": "https://github.com/swiftmailer/swiftmailer.git",
-            "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517"
+            "reference": "7ffc1ea296ed14bf8260b6ef11b80208dbadba91"
         },
         "dist": {
             "type": "zip",
-            "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517",
-            "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517",
+            "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/7ffc1ea296ed14bf8260b6ef11b80208dbadba91",
+            "reference": "7ffc1ea296ed14bf8260b6ef11b80208dbadba91",
             "shasum": ""
         },
         "require": {
@@ -81,7 +81,7 @@
             "mockery/mockery": "~0.9.1",
             "symfony/phpunit-bridge": "~3.2"
         },
-        "time": "2017-05-01T15:54:03+00:00",
+        "time": "2018-01-23T07:37:21+00:00",
         "type": "library",
         "extra": {
             "branch-alias": {
@@ -108,7 +108,7 @@
             }
         ],
         "description": "Swiftmailer, free feature-rich PHP mailer",
-        "homepage": "http://swiftmailer.org",
+        "homepage": "https://swiftmailer.symfony.com",
         "keywords": [
             "email",
             "mail",
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000000000000000000000000000000000000..5db652465bad0b9e433039289af0009c726ccbd1
--- /dev/null
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,19 @@
+<!-- Please fill in this template according to your issue. -->
+
+| Q                   | A
+| ------------------- | -----
+| Bug report?         | yes/no
+| Feature request?    | yes/no
+| RFC?                | yes/no
+| How used?           | Standalone/Symfony/3party
+| Swiftmailer version | x.y.z
+| PHP version         | x.y.z
+
+### Observed behaviour
+<!-- What does the code do? -->
+
+### Expected behaviour
+<!-- What should the code do? -->
+
+### Example
+<!-- Example to reproduce the issue. -->
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000000000000000000000000000000000000..4b395107bc5cceae464338496b1d1ba26ce67f39
--- /dev/null
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,14 @@
+<!-- Please fill in this template according to the PR you're about to submit. -->
+
+| Q             | A
+| ------------- | ---
+| Bug fix?      | yes/no
+| New feature?  | yes/no
+| Doc update?   | yes/no
+| BC breaks?    | yes/no
+| Deprecations? | yes/no
+| Fixed tickets | #... <!-- #-prefixed issue number(s), if any -->
+| License       | MIT
+
+
+<!-- Replace this comment by the description of your issue. -->
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/CHANGES b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/CHANGES
index e5b605bdb676fa161bd447bfb679d2aa7718a00d..07fa342bc8a8a8f6a45e81e452e61ff1f246886d 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/CHANGES
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/CHANGES
@@ -1,6 +1,11 @@
 Changelog
 =========
 
+5.4.9 (2018-01-23)
+------------------
+
+ * no changes, last version of the 5.x series
+
 5.4.8 (2017-05-01)
 ------------------
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/README b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/README
index c3bf03185e3bfe67cc934fd2701775c5cab0223b..52c07575829b79bf22e82d5cbf0bc44ca61a0934 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/README
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/README
@@ -4,8 +4,8 @@ Swift Mailer
 Swift Mailer is a component based mailing solution for PHP 5.
 It is released under the MIT license.
 
-Homepage:      http://swiftmailer.org
-Documentation: http://swiftmailer.org/docs
+Homepage:      https://swiftmailer.symfony.com/
+Documentation: https://swiftmailer.symfony.com/docs/introduction.html
 Bugs:          https://github.com/swiftmailer/swiftmailer/issues
 Repository:    https://github.com/swiftmailer/swiftmailer
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/VERSION b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/VERSION
index 6434642b00fc3f87431d866e85d2709142c1dbf4..1842f65a057e0a0221561c5316bc7840d8557493 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/VERSION
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/VERSION
@@ -1 +1 @@
-Swift-5.4.8
+Swift-5.4.9
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/composer.json b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/composer.json
index 8335f58aca8a09938ca092509cc21599a406ab41..44a1050fa2fb33d21f8e2263a91408f197a7fc75 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/composer.json
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/composer.json
@@ -3,7 +3,7 @@
     "type": "library",
     "description": "Swiftmailer, free feature-rich PHP mailer",
     "keywords": ["mail","mailer","email"],
-    "homepage": "http://swiftmailer.org",
+    "homepage": "https://swiftmailer.symfony.com",
     "license": "MIT",
     "authors": [
         {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/headers.rst b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/headers.rst
index 6aec23ff3880e44a3256837c32a661781dd1934f..2c11c18e06a8c18060c63c2136712d3cbecaebca 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/headers.rst
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/headers.rst
@@ -476,10 +476,8 @@ the HeaderSet's ``addIdHeader()`` method.
 
     $headers->addIdHeader('Your-Header-Name', '123456.unqiue@example.org');
 
-Changing the value of an existing date header is done by calling its
-``setId()`` method.
-
-.. code-block:: php
+Changing the value of an existing ID header is done by calling its
+``setId()`` method::
 
     $msgId = $message->getHeaders()->get('Message-ID');
 
@@ -518,7 +516,6 @@ You add a new path header to a HeaderSet by calling the HeaderSet's
 
     $headers->addPathHeader('Your-Header-Name', 'person@example.org');
 
-
 Changing the value of an existing path header is done by calling its
 ``setAddress()`` method.
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/messages.rst b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/messages.rst
index fb5e7fc390b7b8bbc082c17f25052f5d4a1b0d2f..b058b776e07263ed715b134e588463a402ac1c50 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/messages.rst
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/messages.rst
@@ -283,11 +283,9 @@ the same filename as the one you attached.
     // Attach it to the message
     $message->attach($attachment);
 
-
     // The two statements above could be written in one line instead
     $message->attach(Swift_Attachment::fromPath('/path/to/image.jpg'));
 
-
     // You can attach files from a URL if allow_url_fopen is on in php.ini
     $message->attach(Swift_Attachment::fromPath('http://site.tld/logo.png'));
 
@@ -311,7 +309,6 @@ the email will rename the file to something else.
     $attachment = Swift_Attachment::fromPath('/path/to/image.jpg')
       ->setFilename('cool.jpg');
 
-
     // Because there's a fluid interface, you can do this in one statement
     $message->attach(
       Swift_Attachment::fromPath('/path/to/image.jpg')->setFilename('cool.jpg')
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/plugins.rst b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/plugins.rst
index 16ae3356f389810e71d529aa9785cc334a64ab8b..6cec6be26772f04b447553dc5b113dbfa3e4e597 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/plugins.rst
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/doc/plugins.rst
@@ -350,14 +350,14 @@ provide an implementation that does this. You need to create a small class.
 
     class DbReplacements implements Swift_Plugins_Decorator_Replacements {
       public function getReplacementsFor($address) {
-        $sql = sprintf(
-          "SELECT * FROM user WHERE email = '%s'",
-          mysql_real_escape_string($address)
+        global $db; // Your PDO instance with a connection to your database
+        $query = $db->prepare(
+          "SELECT * FROM `users` WHERE `email` = ?"
         );
 
-        $result = mysql_query($sql);
+        $query->execute([$address]);
 
-        if ($row = mysql_fetch_assoc($result)) {
+        if ($row = $query->fetch(PDO::FETCH_ASSOC)) {
           return array(
             '{username}'=>$row['username'],
             '{password}'=>$row['password']
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php
index cf3c3df20d1ae8ccf88e05bb1ac7903c9c213e97..82c381b73d6dece6d259a5178db633c88f0ffb55 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php
@@ -47,7 +47,7 @@ abstract class Swift
             return;
         }
 
-        $path = __DIR__ . 'Swift.php/' .str_replace('_', '/', $class).'.php';
+        $path = __DIR__.'/'.str_replace('_', '/', $class).'.php';
 
         if (!file_exists($path)) {
             return;
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php
index 90085d53014a3fe7507bf3b1b3aabaaa3269482b..d575e4f2dea949839e97d4cabae2180ece91bbdd 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php
@@ -1,6 +1,6 @@
 <?php
 
-require __DIR__ . '/../mime_types.php';
+require __DIR__.'/../mime_types.php';
 
 Swift_DependencyContainer::getInstance()
     ->register('properties.charset')
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/mime_types.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/mime_types.php
index 2d7b98dc1aabc1ef2b7ba5abacfe2ed0eb8f31e2..b42c1cc1a3ed9839ff2f78bdf56c219262d541aa 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/mime_types.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/mime_types.php
@@ -7,7 +7,7 @@
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
  *
- * autogenerated using http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
+ * autogenerated using https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
  * and https://raw.github.com/minad/mimemagic/master/script/freedesktop.org.xml
  */
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_init.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_init.php
index 2f85e74f7b5d00283179b9da4660e0de2c8d08d6..ff7196344b58a676e20e86f0dc9812427847ad3a 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_init.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_init.php
@@ -19,10 +19,10 @@ if (defined('SWIFT_INIT_LOADED')) {
 define('SWIFT_INIT_LOADED', true);
 
 // Load in dependency maps
-require __DIR__ . '/dependency_maps/cache_deps.php';
-require __DIR__ . '/dependency_maps/mime_deps.php';
-require __DIR__ . '/dependency_maps/message_deps.php';
-require __DIR__ . '/dependency_maps/transport_deps.php';
+require __DIR__.'/dependency_maps/cache_deps.php';
+require __DIR__.'/dependency_maps/mime_deps.php';
+require __DIR__.'/dependency_maps/message_deps.php';
+require __DIR__.'/dependency_maps/transport_deps.php';
 
 // Load in global library preferences
-require __DIR__ . '/preferences.php';
+require __DIR__.'/preferences.php';
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required.php
index 4e30ae8f8f91aca2c009e645852142517daf604e..03a72ceae11050dadae0f4419b075c49dfd26d10 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required.php
@@ -17,12 +17,12 @@ if (class_exists('Swift', false)) {
 }
 
 // Load Swift utility class
-require __DIR__ . '/classes/Swift.php';
+require __DIR__.'/classes/Swift.php';
 
 if (!function_exists('_swiftmailer_init')) {
     function _swiftmailer_init()
     {
-        require __DIR__ . '/swift_init.php';
+        require __DIR__.'/swift_init.php';
     }
 }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required_pear.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required_pear.php
index 351502062608e435ad253fd094a672d7aa53f9f9..2b5181a93fd1c5a44d407c0792f725e3c1724dad 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required_pear.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swift_required_pear.php
@@ -22,7 +22,7 @@ require __DIR__.'/Swift.php';
 if (!function_exists('_swiftmailer_init')) {
     function _swiftmailer_init()
     {
-        require __DIR__ . '/swift_init.php';
+        require __DIR__.'/swift_init.php';
     }
 }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
index 3bb878072022d84190c43396f254bab56c75c819..85f2d69f21c6ddb5a2e648ded5ff82c29bb2e29a 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
@@ -1,8 +1,8 @@
 #!/usr/bin/php
 
 <?php
-define('APACHE_MIME_TYPES_URL', 'http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types');
-define('FREEDESKTOP_XML_URL', 'https://raw2.github.com/minad/mimemagic/master/script/freedesktop.org.xml');
+define('APACHE_MIME_TYPES_URL', 'https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types');
+define('FREEDESKTOP_XML_URL', 'https://raw.github.com/minad/mimemagic/master/script/freedesktop.org.xml');
 
 function generateUpToDateMimeArray()
 {
@@ -12,7 +12,7 @@ function generateUpToDateMimeArray()
     $preamble .= " * (c) 2004-2009 Chris Corbyn\n *\n";
     $preamble .= " * For the full copyright and license information, please view the LICENSE\n";
     $preamble .= " * file that was distributed with this source code.\n *\n";
-    $preamble .= " * autogenerated using http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types\n";
+    $preamble .= " * autogenerated using https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types\n";
     $preamble .= " * and https://raw.github.com/minad/mimemagic/master/script/freedesktop.org.xml\n";
     $preamble .= " */\n\n";
     $preamble .= "/*\n";
@@ -92,7 +92,7 @@ function generateUpToDateMimeArray()
             'wav' => 'audio/wav',
             'wma' => 'audio/x-ms-wma',
             'wmv' => 'audio/x-ms-wmv',
-            'xls' => 'application/excel',
+            'xls' => 'application/vnd.ms-excel',
             'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
             'xml' => 'application/xml',
         );
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php
index 2897d58db924449b88869f3d9680ee5b62bf889b..5c0b8264e364316924c871f3b99146dd249decb2 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'swift_required.php';
-require_once __DIR__ . '/Mime/AttachmentAcceptanceTest.php';
+require_once __DIR__.'/Mime/AttachmentAcceptanceTest.php';
 
 class Swift_AttachmentAcceptanceTest extends Swift_Mime_AttachmentAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php
index 7197a4b4beca503dad70d996fed9de8d9ec49ccf..fc5a8147df1b0799bca77a925fd1e962a78b9c93 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'swift_required.php';
-require_once __DIR__ . '/Mime/EmbeddedFileAcceptanceTest.php';
+require_once __DIR__.'/Mime/EmbeddedFileAcceptanceTest.php';
 
 class Swift_EmbeddedFileAcceptanceTest extends Swift_Mime_EmbeddedFileAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php
index d52a3280cec26d2ab136eed5e6edc54aa0872189..bada5094db4816a38c996bb4d9157bd8bfa9e9b2 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Encoder_Base64EncoderAcceptanceTest extends \PHPUnit_Framework_TestC
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../_samples/charsets');
         $this->_encoder = new Swift_Encoder_Base64Encoder();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php
index d021a2d1d17634d5dc621a5aea08433355f04f41..442d9a94b19dd60600be244460e467f543fc5f8b 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Encoder_QpEncoderAcceptanceTest extends \PHPUnit_Framework_TestCase
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../_samples/charsets');
         $this->_factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php
index f305d5a651ab759c700c8a1f9112ba91211e2a30..bcb6b957cb249e905547ea09897f0d6937eaadfe 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Encoder_Rfc2231EncoderAcceptanceTest extends \PHPUnit_Framework_Test
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../_samples/charsets');
         $this->_factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php
index e99f3488e0a9ca707243827c0dd73a02700a9385..5f4e9835ed26741953314b4d01e0e43e4dccd085 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'swift_required.php';
-require_once __DIR__ . '/Mime/SimpleMessageAcceptanceTest.php';
+require_once __DIR__.'/Mime/SimpleMessageAcceptanceTest.php';
 
 class Swift_MessageAcceptanceTest extends Swift_Mime_SimpleMessageAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php
index 7b94f8769b16dd897b995cfae142df57b55ac177..a72f5ff45f70eb9c6545789a41c789db9e270d31 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Mime_ContentEncoder_Base64ContentEncoderAcceptanceTest extends \PHPU
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../../_samples/charsets');
         $this->_encoder = new Swift_Mime_ContentEncoder_Base64ContentEncoder();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php
index 93d92eb32d82afed2acc9b3a8bfc5c21f873eace..0dfc4e228828b1a070ee16289cffa0fa3ce84437 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php
@@ -11,7 +11,7 @@ class Swift_Mime_ContentEncoder_NativeQpContentEncoderAcceptanceTest extends \PH
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../../_samples/charsets');
         $this->_encoder = new Swift_Mime_ContentEncoder_NativeQpContentEncoder();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php
index 4338efa5aeaeb683c574d126473d8750ce71669e..5eff4e2fbc1662ec65d1ce5ed95638ed2b398268 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Mime_ContentEncoder_PlainContentEncoderAcceptanceTest extends \PHPUn
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../../_samples/charsets');
         $this->_encoder = new Swift_Mime_ContentEncoder_PlainContentEncoder('8bit');
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php
index bf89d25e47641a411646dc6c8a5ffcfbbdf5d5b5..a383b5840a713c5955f57af4df43f11933cb8f4b 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php
@@ -7,7 +7,7 @@ class Swift_Mime_ContentEncoder_QpContentEncoderAcceptanceTest extends \PHPUnit_
 
     protected function setUp()
     {
-        $this->_samplesDir = realpath(__DIR__ . '/../../../../_samples/charsets');
+        $this->_samplesDir = realpath(__DIR__.'/../../../../_samples/charsets');
         $this->_factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory();
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php
index 3ec53e11c49a6549ae0dae1c9922be69e65213af..f42405dfd17603e7a7f9ebac1ae96301004dc07e 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'swift_required.php';
-require_once __DIR__ . '/Mime/MimePartAcceptanceTest.php';
+require_once __DIR__.'/Mime/MimePartAcceptanceTest.php';
 
 class Swift_MimePartAcceptanceTest extends Swift_Mime_MimePartAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php
index 58f406c53dbca9954f495903b03baba84208c44b..4c3c7d3a3c21dcbc489e73f0ef09b6a1141157f7 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once __DIR__ . '/AbstractStreamBufferAcceptanceTest.php';
+require_once __DIR__.'/AbstractStreamBufferAcceptanceTest.php';
 
 class Swift_Transport_StreamBuffer_BasicSocketAcceptanceTest extends Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php
index 6abeb749f9d9a38337103452e8982fda23800b9c..a37439d7cb24179cca42aadc61183905e639a96d 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once __DIR__ . '/AbstractStreamBufferAcceptanceTest.php';
+require_once __DIR__.'/AbstractStreamBufferAcceptanceTest.php';
 
 class Swift_Transport_StreamBuffer_ProcessAcceptanceTest extends Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php
index e766f4192f461764c210f535ee507f9d4cd599c1..32e0fe8497159d1ae6d7d206d8b35fc88c3094a6 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once __DIR__ . '/AbstractStreamBufferAcceptanceTest.php';
+require_once __DIR__.'/AbstractStreamBufferAcceptanceTest.php';
 
 class Swift_Transport_StreamBuffer_SslSocketAcceptanceTest extends Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php
index dd3e09a5405f352bc4f1cdf9512f24ab5779383b..1053a877e437804e1780b67a8d1677ec6f54f274 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once __DIR__ . '/AbstractStreamBufferAcceptanceTest.php';
+require_once __DIR__.'/AbstractStreamBufferAcceptanceTest.php';
 
 class Swift_Transport_StreamBuffer_TlsSocketAcceptanceTest extends Swift_Transport_StreamBuffer_AbstractStreamBufferAcceptanceTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bootstrap.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bootstrap.php
index 871087074b381302c940dc79065865d3cf45f167..27091a28e0a4e87ab577bee28cd3b14f9f784f67 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bootstrap.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bootstrap.php
@@ -15,7 +15,7 @@ if (is_file(__DIR__.'/acceptance.conf.php')) {
 if (is_file(__DIR__.'/smoke.conf.php')) {
     require_once __DIR__.'/smoke.conf.php';
 }
-require_once __DIR__ . '/StreamCollector.php';
-require_once __DIR__ . '/IdenticalBinaryConstraint.php';
-require_once __DIR__ . '/SwiftMailerTestCase.php';
-require_once __DIR__ . '/SwiftMailerSmokeTestCase.php';
+require_once __DIR__.'/StreamCollector.php';
+require_once __DIR__.'/IdenticalBinaryConstraint.php';
+require_once __DIR__.'/SwiftMailerTestCase.php';
+require_once __DIR__.'/SwiftMailerSmokeTestCase.php';
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php
index 534713a9b57307ed5bc8ebcf90c47b3728522fa7..9deae4f7b0aef358359ec0896b91b6352c9b0d82 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php
@@ -10,7 +10,7 @@ class Swift_Bug38Test extends \PHPUnit_Framework_TestCase
     {
         $this->_attFileName = 'data.txt';
         $this->_attFileType = 'text/plain';
-        $this->_attFile = __DIR__ . '/../../_samples/files/data.txt';
+        $this->_attFile = __DIR__.'/../../_samples/files/data.txt';
         Swift_Preferences::getInstance()->setCharset('utf-8');
     }
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php
index f82ec805106df1c6cacbe0e75dcdb5c7cb60d22e..263cae51ac4a09231a324dd4b62d6226f4e82e5b 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php
@@ -11,7 +11,7 @@ class Swift_Bug534Test extends \PHPUnit_Framework_TestCase
             ->setTo('to@example.com')
             ->setSubject('test')
         ;
-        $cid = $message->embed(Swift_Image::fromPath(__DIR__ . '/../../_samples/files/swiftmailer.png'));
+        $cid = $message->embed(Swift_Image::fromPath(__DIR__.'/../../_samples/files/swiftmailer.png'));
         $message->setBody('<img src="'.$cid.'" />', 'text/html');
 
         $that = $this;
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php
index ead60db302a9c876f8aba7129846cbdb605dc53c..5a4ccde3eed20d0c1ef898b2b67bdffa54efc296 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php
@@ -10,7 +10,7 @@ class Swift_Smoke_AttachmentSmokeTest extends SwiftMailerSmokeTestCase
     protected function setUp()
     {
         parent::setup(); // For skip
-        $this->_attFile = __DIR__ . '/../../../_samples/files/textfile.zip';
+        $this->_attFile = __DIR__.'/../../../_samples/files/textfile.zip';
     }
 
     public function testAttachmentSending()
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php
index 3e3d8313613967eb419ff748350cc5cc3f6b81c1..3b13cc5d1b981ddd1831eec8c3869dfb47ef1b6f 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php
@@ -9,7 +9,7 @@ class Swift_Smoke_HtmlWithAttachmentSmokeTest extends SwiftMailerSmokeTestCase
 
     protected function setUp()
     {
-        $this->_attFile = __DIR__ . '/../../../_samples/files/textfile.zip';
+        $this->_attFile = __DIR__.'/../../../_samples/files/textfile.zip';
     }
 
     public function testAttachmentSending()
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php
index b459b0baf47c98c1b2d5d594d340c3502fdf6ec2..b9ebef52c9406b5d173b45845f26c2951f566f3c 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php
@@ -10,7 +10,7 @@ class Swift_Smoke_InternationalSmokeTest extends SwiftMailerSmokeTestCase
     protected function setUp()
     {
         parent::setup(); // For skip
-        $this->_attFile = __DIR__ . '/../../../_samples/files/textfile.zip';
+        $this->_attFile = __DIR__.'/../../../_samples/files/textfile.zip';
     }
 
     public function testAttachmentSending()
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php
index 9cec33e2cbb74e8d5c0c8d9acd46839277401b8b..35a568c6e20c78a996c17fca4052dc16d4b1b6dc 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php
@@ -14,10 +14,10 @@ class Swift_MessageTest extends \PHPUnit_Framework_TestCase
     public function testCloningWithSigners()
     {
         $message1 = new Swift_Message('subj', 'body', 'ctype');
-        $signer = new Swift_Signers_DKIMSigner(dirname(dirname(__DIR__)) . '/_samples/dkim/dkim.test.priv', 'test.example', 'example');
+        $signer = new Swift_Signers_DKIMSigner(dirname(dirname(__DIR__)).'/_samples/dkim/dkim.test.priv', 'test.example', 'example');
         $message1->attachSigner($signer);
         $message2 = new Swift_Message('subj', 'body', 'ctype');
-        $signer = new Swift_Signers_DKIMSigner(dirname(dirname(__DIR__)) . '/_samples/dkim/dkim.test.priv', 'test.example', 'example');
+        $signer = new Swift_Signers_DKIMSigner(dirname(dirname(__DIR__)).'/_samples/dkim/dkim.test.priv', 'test.example', 'example');
         $message2->attachSigner($signer);
         $message1_clone = clone $message1;
 
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php
index 9bdeffaa2d0c4a666f690f34d0c0e2534a22b23b..3efe6ec441b19b7b2ac3a81723e69f1c30dca930 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once dirname(dirname(dirname(__DIR__))) . '/fixtures/MimeEntityFixture.php';
+require_once dirname(dirname(dirname(__DIR__))).'/fixtures/MimeEntityFixture.php';
 
 abstract class Swift_Mime_AbstractMimeEntityTest extends \SwiftMailerTestCase
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php
index a8ea4fb383f9c03f11d442fb49dcc015c0b7121b..5eda22325089ea57a6a8ab893dcf3c8083e9ff43 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php
@@ -13,7 +13,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headers = $this->_createHeaders();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         /* @var $signer Swift_Signers_HeaderSigner */
         $altered = $signer->getAlteredHeaders();
         $signer->reset();
@@ -32,7 +32,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headerSet = $this->_createHeaderSet();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         $signer->setHashAlgorithm('rsa-sha1');
         $signer->setSignatureTimestamp('1299879181');
         $altered = $signer->getAlteredHeaders();
@@ -55,7 +55,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headerSet = $this->_createHeaderSet();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         $signer->setHashAlgorithm('rsa-sha256');
         $signer->setSignatureTimestamp('1299879181');
         $altered = $signer->getAlteredHeaders();
@@ -78,7 +78,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headerSet = $this->_createHeaderSet();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         $signer->setHashAlgorithm('rsa-sha256');
         $signer->setSignatureTimestamp('1299879181');
         $signer->setBodyCanon('relaxed');
@@ -103,7 +103,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headerSet = $this->_createHeaderSet();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         $signer->setHashAlgorithm('rsa-sha256');
         $signer->setSignatureTimestamp('1299879181');
         $signer->setHeaderCanon('relaxed');
@@ -127,7 +127,7 @@ class Swift_Signers_DKIMSignerTest extends \SwiftMailerTestCase
     {
         $headerSet = $this->_createHeaderSet();
         $messageContent = 'Hello World';
-        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))) . '/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
+        $signer = new Swift_Signers_DKIMSigner(file_get_contents(dirname(dirname(dirname(__DIR__))).'/_samples/dkim/dkim.test.priv'), 'dummy.nxdomain.be', 'dummySelector');
         $signer->setHashAlgorithm('rsa-sha256');
         $signer->setSignatureTimestamp('1299879181');
         $signer->setBodyCanon('relaxed');
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php
index c7bf1f07edc88862a0e69de80a3de71976e5a8a7..5069c1f58432ff606aa478cdaaddd3ed38c0e001 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php
@@ -14,7 +14,7 @@ class Swift_Signers_SMimeSignerTest extends \PHPUnit_Framework_TestCase
         $this->replacementFactory = Swift_DependencyContainer::getInstance()
             ->lookup('transport.replacementfactory');
 
-        $this->samplesDir = str_replace('\\', '/', realpath(__DIR__ . '/../../../_samples/')).'/';
+        $this->samplesDir = str_replace('\\', '/', realpath(__DIR__.'/../../../_samples/')).'/';
     }
 
     public function testUnSingedMessage()
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php
index 462a03bdc02b636ff0f52066924825456d09eca6..81bda4f0d4af9577b981bcdbb57f4e4e0fc87c38 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once __DIR__ . '/AbstractSmtpTest.php';
+require_once __DIR__.'/AbstractSmtpTest.php';
 
 abstract class Swift_Transport_AbstractSmtpEventSupportTest extends Swift_Transport_AbstractSmtpTest
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php
index c37633688f0aa063ba2265e402375214793e3532..166e1605bd266e37e6e78323c1fadfeee24913bd 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/src/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php
@@ -1,6 +1,6 @@
 <?php
 
-require_once dirname(__DIR__) . '/EsmtpTransportTest.php';
+require_once dirname(__DIR__).'/EsmtpTransportTest.php';
 
 interface Swift_Transport_EsmtpHandlerMixin extends Swift_Transport_EsmtpHandler
 {
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/index-cli.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/index-cli.php
index f53520c017273c104ab7c7918aa712fca50c8855..9672243ff55f204bd1c02df636bfb1b50d8a0efe 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/index-cli.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/index-cli.php
@@ -9,12 +9,14 @@
 require __DIR__ . '/../src/vendor/autoload.php';
 require_once __DIR__ . '/../src/sample.php';
 
+file_put_contents("php://stdout", $_SERVER['REQUEST_URI'] ) ;
+
 print "request uri : " . $_SERVER['REQUEST_URI'] . "<br>";
 print "request method " . $_SERVER['REQUEST_METHOD']. "<br><br>";
 
 print "<h2>connexion mysql-mariadb :</h2>" . "<br>";
 try {
-    $pdo = new PDO( 'mysql:host=db;dbname=mysql', 'root', 'root66');
+    $pdo = new PDO( 'mysql:host=db;dbname=mysql', 'root', 'root');
 } catch (PDOException $e) {
     print 'erreur connexion mysql : ' . $e->getMessage() . '<br>' ;
     die();
diff --git a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/mysql.php b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/mysql.php
index c98df29ba25e0fc56b66fa552e430ea0f265134b..17eedd1e76eaa778e2400ac4ecf4746a970bcc70 100644
--- a/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/mysql.php
+++ b/boilerplates/php.dev.boilerplate/php.dev.boilerplate.test/web/mysql.php
@@ -8,7 +8,7 @@
  */
 
 try {
-    $pdo = new PDO( 'mysql:host=db;dbname=mysql', 'root', 'root66');
+    $pdo = new PDO( 'mysql:host=db;dbname=mysql', 'root', 'root');
 } catch (PDOException $e) {
     print 'erreur connexion mysql : ' . $e->getMessage() . '<br>' ;
     die();
diff --git a/php/5.6/php.old.ini b/php/5.6/php.old.ini
new file mode 100644
index 0000000000000000000000000000000000000000..dae94c028e97094a275731ea4612ae3c7e08d4b0
--- /dev/null
+++ b/php/5.6/php.old.ini
@@ -0,0 +1,141 @@
+[PHP]
+
+;;;;;;;;;;;;;;;;;
+; errors        ;
+;;;;;;;;;;;;;;;;;
+memory_limit = 512M
+max_execution_time = 60
+error_reporting = -1
+display_errors = On
+display_startup_errors = On
+track_errors = On
+
+;;;;;;;;;;;;;;;;;;
+; variables & headers
+;;;;;;;;;;;;;;;;;;
+variables_order = "GPCS"
+always_populate_raw_post_data = -1
+output_buffering = 4096
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+file_uploads = On
+upload_max_filesize = 8M
+max_file_uploads = 25
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+allow_url_fopen = On
+allow_url_include = Off
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+cli_server.color = On
+
+[Date]
+date.timezone = Europe/Paris
+
+[Pdo]
+
+
+[Pdo_mysql]
+
+pdo_mysql.cache_size = 3000
+pdo_mysql.default_socket=
+
+[Phar]
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+[SQL]
+; http://php.net/sql.safe-mode
+sql.safe_mode = Off
+
+
+[MySQL]
+
+mysql.allow_local_infile = On
+mysql.allow_persistent = On
+mysql.cache_size = 3000
+mysql.max_persistent = -1
+mysql.max_links = -1
+mysql.default_port = 3306
+mysql.default_socket =
+mysql.default_host = mysql
+mysql.default_user =
+mysql.default_password =
+
+mysql.connect_timeout = 60
+mysql.trace_mode = Off
+
+[MySQLi]
+mysqli.max_persistent = -1
+mysqli.allow_local_infile = On
+mysqli.allow_persistent = On
+mysqli.max_links = -1
+mysqli.cache_size = 3000
+mysqli.default_port = 3306
+mysqli.default_socket =
+mysqli.default_host =
+mysqli.default_user =
+mysqli.default_pw =
+mysqli.reconnect = Off
+
+[mysqlnd]
+mysqlnd.collect_statistics = On
+mysqlnd.collect_memory_statistics = On
+mysqlnd.mempool_default_size = 16000
+
+[PostgreSQL]
+pgsql.allow_persistent = On
+pgsql.auto_reset_persistent = Off
+pgsql.max_persistent = -1
+pgsql.max_links = -1
+pgsql.ignore_notice = 0
+pgsql.log_notice = 0
+
+[bcmath]
+bcmath.scale = 0
+
+
+[Session]
+session.save_handler = files
+session.use_strict_mode = 0
+session.use_cookies = 1
+session.use_only_cookies = 1
+session.name = PHPSESSID
+session.auto_start = 0
+session.cookie_lifetime = 0
+session.cookie_path = /
+session.cookie_domain =
+session.cookie_httponly =
+session.serialize_handler = php
+session.gc_probability = 1
+session.gc_divisor = 1000
+session.gc_maxlifetime = 1440
+session.referer_check =
+session.cache_limiter = nocache
+session.cache_expire = 120
+session.use_trans_sid = 0
+session.hash_function = 0
+session.hash_bits_per_character = 5
+url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
+
+[Assertion]
+assert.active = On
+assert.warning = On
+
+[XDebug]
+xdebug.remote_enable = 1
+xdebug.remote_connect_back = 1
diff --git a/php/7.1/php.old.ini b/php/7.1/php.old.ini
new file mode 100644
index 0000000000000000000000000000000000000000..c8c835c2037407a60453790d8d97a0d946e063dc
--- /dev/null
+++ b/php/7.1/php.old.ini
@@ -0,0 +1,25 @@
+[PHP]
+
+
+memory_limit = 512M
+max_execution_time = 60
+error_reporting = -1
+display_errors = On
+display_startup_errors = On
+track_errors = On
+variables_order = "GPCS"
+
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+file_uploads = On
+upload_max_filesize = 8M
+max_file_uploads = 25
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+allow_url_fopen = On
+allow_url_include = Off
diff --git a/php/7.2-cli/Dockerfile b/php/7.2-cli/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..995c77e8ba644599707756f375660f6556421974
--- /dev/null
+++ b/php/7.2-cli/Dockerfile
@@ -0,0 +1,45 @@
+# Use an official Python runtime as a base image
+FROM php:7.2-cli
+
+RUN apt-get update && \
+    apt-get install --yes --force-yes \
+    cron g++ gettext libicu-dev openssl \
+    libc-client-dev libkrb5-dev  \
+    libxml2-dev libfreetype6-dev \
+    libgd-dev libmcrypt-dev bzip2 \
+    libbz2-dev libtidy-dev libcurl4-openssl-dev \
+    libz-dev libmemcached-dev libxslt-dev git-core libpq-dev
+
+
+# PHP Configuration
+RUN docker-php-ext-install bcmath bz2 calendar dba exif gettext intl soap tidy xmlrpc xsl zip&&\
+    docker-php-ext-install mysqli pgsql pdo pdo_mysql pdo_pgsql  &&\
+    docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr &&\
+    docker-php-ext-install gd &&\
+    docker-php-ext-configure imap --with-kerberos --with-imap-ssl &&\
+    docker-php-ext-install imap &&\
+    docker-php-ext-configure hash --with-mhash &&\
+    pecl install xdebug && docker-php-ext-enable xdebug &&\
+    pecl install mongodb && docker-php-ext-enable mongodb &&\
+    pecl install redis && docker-php-ext-enable redis && \
+    curl -sS https://getcomposer.org/installer | php \
+            && mv composer.phar /usr/bin/composer
+
+# Apache Configuration
+#RUN a2enmod rewrite
+
+# SSL
+#RUN mv  /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-available/000-default-ssl.conf &&\
+#    a2enmod ssl && \
+#    a2ensite 000-default-ssl &&\
+#    openssl req -subj '/CN=example.com/O=My Company Name LTD./C=US' -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout /etc/ssl/private/ssl-cert-snakeoil.key -out /etc/ssl/certs/ssl-cert-snakeoil.pem
+#
+#EXPOSE 443
+
+# Imagemagick
+#RUN apt-get install --yes --force-yes libmagickwand-dev libmagickcore-dev
+#RUN yes '' | pecl install -f imagick &&\
+#    docker-php-ext-enable imagick
+
+#COPY create_vhost start /usr/local/bin/
+COPY php.ini /usr/local/etc/php/
diff --git a/php/7.2-cli/README.md b/php/7.2-cli/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..051e5379538981e626ff5fee08746aa7659433bc
--- /dev/null
+++ b/php/7.2-cli/README.md
@@ -0,0 +1,5 @@
+# canals/php:7.1-cli, latest
+
+##Image docker PHP
+Basée sur l'iamge officielle `php:7.1-cli`
+
diff --git a/php/7.2-cli/php.ini b/php/7.2-cli/php.ini
new file mode 100644
index 0000000000000000000000000000000000000000..b075fefa39cd6667c339711f535b2df4f1db3d20
--- /dev/null
+++ b/php/7.2-cli/php.ini
@@ -0,0 +1,1089 @@
+[PHP]
+
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+
+engine = On
+short_open_tag = Off
+precision = 14
+output_buffering = 4096
+zlib.output_compression = Off
+implicit_flush = Off
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+max_execution_time = 60
+max_input_time = 60
+memory_limit = 512M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+error_reporting = E_ALL
+display_errors = On
+display_startup_errors = On
+log_errors = On
+log_errors_max_len = 1024
+ignore_repeated_errors = Off
+ignore_repeated_source = Off
+report_memleaks = On
+
+html_errors = On
+
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+variables_order = "GPCS"
+
+request_order = "GP"
+
+register_argc_argv = Off
+auto_globals_jit = On
+
+post_max_size = 16M
+default_mimetype = "text/html"
+default_charset = "UTF-8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+enable_dl = Off
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+file_uploads = On
+upload_max_filesize = 8M
+max_file_uploads = 25
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+allow_url_fopen = On
+
+allow_url_include = Off
+
+default_socket_timeout = 60
+
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+;date.timezone =
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.583333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.583333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < intput_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+;sqlite3.extension_dir =
+
+[Pcre]
+;PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+;PCRE library recursion limit.
+;Please note that if you set this value to a high number you may consume all
+;the available process stack and eventually crash PHP (due to reaching the
+;stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+;Enables or disables JIT compilation of patterns. This requires the PCRE
+;library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+;pdo_odbc.db2_instance_name
+
+[Pdo_mysql]
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/pdo_mysql.cache_size
+pdo_mysql.cache_size = 2000
+
+; Default socket name for local MySQL connects.  If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/pdo_mysql.default-socket
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; http://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = On
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[SQL]
+; http://php.net/sql.safe-mode
+sql.safe_mode = Off
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db    =  Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user  =  Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw    =  Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent).  -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields.  Returns number of bytes to variables.  0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+;birdstep.max_links = -1
+
+[Interbase]
+; Allow or prevent persistent links.
+ibase.allow_persistent = 1
+
+; Maximum number of persistent links.  -1 means no limit.
+ibase.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent).  -1 means no limit.
+ibase.max_links = -1
+
+; Default database name for ibase_connect().
+;ibase.default_db =
+
+; Default username for ibase_connect().
+;ibase.default_user =
+
+; Default password for ibase_connect().
+;ibase.default_password =
+
+; Default charset for ibase_connect().
+;ibase.default_charset =
+
+; Default timestamp format.
+ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
+
+; Default date format.
+ibase.dateformat = "%Y-%m-%d"
+
+; Default time format.
+ibase.timeformat = "%H:%M:%S"
+
+[MySQLi]
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links.  -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/mysqli.cache_size
+mysqli.cache_size = 2000
+
+; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects.  If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password!  And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_statistics
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_memory_statistics
+mysqlnd.collect_memory_statistics = On
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; http://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+; http://php.net/mysqlnd.log_mask
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+; http://php.net/mysqlnd.mempool_default_size
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+; http://php.net/mysqlnd.net_cmd_buffer_size
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+; http://php.net/mysqlnd.net_read_buffer_size
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+; http://php.net/mysqlnd.net_read_timeout
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+; http://php.net/mysqlnd.sha256_server_public_key
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; http://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; http://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; http://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; http://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle 11g Database Resident
+; Connection Pooling (DRCP).  To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; http://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables statement prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; http://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; http://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent).  -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler.  In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+;     session.save_path = "N;/path"
+;
+; where N is an integer.  Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories.  This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+;         You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+;         use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+;     session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept uninitialized session ID and regenerate
+; session ID if browser sends uninitialized session ID. Strict mode protects
+; applications from session fixation via session adoption vulnerability. It is
+; disabled by default for maximum compatibility, but enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Handler used to serialize data.  php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started
+; on every session initialization. The probability is calculated by using
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator
+; and gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using the following equation:
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
+; session.gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request. Increasing this value to 1000 will give you
+; a 0.1% chance the gc will run on any give request. For high volume production servers,
+; this is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+;       (see session.save_path above), then garbage collection does *not*
+;       happen automatically.  You will need to do your own garbage
+;       collection through a shell script, cron entry, or some other method.
+;       For example, the following script would is the equivalent of
+;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+;          find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+;   to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+;   in publicly accessible computer.
+; - User may access your site with the same session ID
+;   always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; http://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; http://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute pathes, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+;   4  (4 bits: 0-9, a-f)
+;   5  (5 bits: 0-9, a-v)
+;   6  (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq =  "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; http://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+;  0: Jump over assertion at run-time
+;  1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = 1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertationException on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+; Eval the expression with current error_reporting().  Set to true if you want
+; error_reporting(0) around the eval().
+; http://php.net/assert.quiet-eval
+;assert.quiet_eval = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; http://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; http://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a components typlib on com_load()
+; http://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; http://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; http://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_traslation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < intput_encoding < mbsting.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+;       portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; overload(replace) single byte functions by mbstring functions.
+; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
+; etc. Possible values are 0,1,2,4 or combination of them.
+; For example, 7 for overload everything.
+; 0: No overload
+; 1: Overload mail() function
+; 2: Overload str*() functions
+; 4: Overload ereg*() functions
+; http://php.net/mbstring.func-overload
+;mbstring.func_overload = 0
+
+; enable strict encoding detection.
+; Default: Off
+;mbstring.strict_detection = On
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel    = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel    = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[mcrypt]
+; For more information about mcrypt settings see http://php.net/mcrypt-module-open
+
+; Directory where to load mcrypt algorithms
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.algorithms_dir=
+
+; Directory where to load mcrypt modes
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.modes_dir=
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; If enabled, a fast shutdown sequence is used for the accelerated code
+; Depending on the used Memory Manager this may cause some incompatibilities.
+;opcache.fast_shutdown=0
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0xffffffff
+
+;opcache.inherited_hack=1
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x  blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; This should improve performance, but requires appropriate OS configuration.
+;opcache.huge_code_pages=0
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+; Local Variables:
+; tab-width: 4
+; End:
diff --git a/php/7.2/Dockerfile b/php/7.2/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..31d9439f54c6094bc8d9ca559c9ff3f8a9b1cddd
--- /dev/null
+++ b/php/7.2/Dockerfile
@@ -0,0 +1,47 @@
+# Use an official Python runtime as a base image
+FROM php:7.2-apache
+
+RUN apt-get update && \
+    apt-get install --yes --force-yes \
+    cron g++ gettext libicu-dev openssl \
+    libc-client-dev libkrb5-dev  \
+    libxml2-dev libfreetype6-dev \
+    libgd-dev libmcrypt-dev bzip2 \
+    libbz2-dev libtidy-dev libcurl4-openssl-dev \
+    libz-dev libmemcached-dev libxslt-dev git-core libpq-dev
+
+
+# PHP Configuration
+RUN docker-php-ext-install bcmath bz2 calendar dba exif gettext intl soap tidy xmlrpc xsl zip&&\
+    docker-php-ext-install mysqli pgsql pdo pdo_mysql pdo_pgsql  &&\
+    docker-php-ext-configure gd --with-freetype-dir=/usr --with-jpeg-dir=/usr &&\
+    docker-php-ext-install gd &&\
+    docker-php-ext-configure imap --with-kerberos --with-imap-ssl &&\
+    docker-php-ext-install imap &&\
+    docker-php-ext-configure hash --with-mhash &&\
+    pecl install xdebug && docker-php-ext-enable xdebug &&\
+    pecl install mongodb && docker-php-ext-enable mongodb &&\
+    pecl install redis && docker-php-ext-enable redis && \
+    curl -sS https://getcomposer.org/installer | php \
+            && mv composer.phar /usr/bin/composer
+
+# Apache Configuration
+RUN a2enmod rewrite 
+
+# SSL
+RUN mv  /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-available/000-default-ssl.conf &&\
+    a2enmod ssl && \
+    a2ensite 000-default-ssl &&\
+    openssl req -subj '/CN=example.com/O=My Company Name LTD./C=US' -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout /etc/ssl/private/ssl-cert-snakeoil.key -out /etc/ssl/certs/ssl-cert-snakeoil.pem
+
+EXPOSE 443
+
+# Imagemagick
+RUN apt-get install --yes --force-yes libmagickwand-dev libmagickcore-dev
+RUN yes '' | pecl install -f imagick &&\
+    docker-php-ext-enable imagick
+
+COPY create_vhost start /usr/local/bin/
+COPY php.ini /usr/local/etc/php/
+
+CMD ["start"]
\ No newline at end of file
diff --git a/php/7.2/README.md b/php/7.2/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..31bec9e84f5640a8c4ab1ba96c4343248bd25b06
--- /dev/null
+++ b/php/7.2/README.md
@@ -0,0 +1,5 @@
+# canals/php:7.2, latest
+
+##Image docker PHP
+Basée sur l'iamge officielle `php:7.2-apache`
+
diff --git a/php/7.2/create_vhost b/php/7.2/create_vhost
new file mode 100755
index 0000000000000000000000000000000000000000..25fa2d38f4c86f4b8b2d6973e78d8d32d7637430
--- /dev/null
+++ b/php/7.2/create_vhost
@@ -0,0 +1,159 @@
+#!/usr/bin/env bash
+
+function show_usage {
+cat <<- _EOF_
+
+Create a new vHost in Debian/Ubuntu Server
+Assumes /etc/apache2/sites-available and /etc/apache2/sites-enabled setup used
+
+    -d    DocumentRoot - i.e. /var/www/yoursite
+    -h    Help - Show this menu.
+    -n    ServerName - i.e. example.com or sub.example.com
+    -a    ServerAlias - i.e. *.example.com or another domain altogether
+    -s    ssl flag : if set to "yes", generate a key/certificate and enables ssl for the vhost
+    -c    Certificate filename. "xip.io" becomes "xip.io.key" and "xip.io.crt".
+          if not set, the server name is used as a cert. name
+    Example Usage.
+    sudo create_vhost -d /var/www/api -n api.dev.local -s yes
+_EOF_
+exit 1
+}
+#
+#   Output vHost skeleton, fill with userinput
+#   To be outputted into new file
+#
+function create_vhost {
+cat <<- _EOF_
+<VirtualHost *:80>
+    ServerAdmin webmaster@localhost
+    ServerName $ServerName
+    $ServerAlias
+    DocumentRoot $DocumentRoot
+    <Directory $DocumentRoot>
+        Options +Indexes +FollowSymLinks +MultiViews
+        AllowOverride All
+        Require all granted
+        #<FilesMatch \.php$>
+            # Change this "proxy:unix:/path/to/fpm.socket"
+            # if using a Unix socket
+        #    SetHandler "proxy:fcgi://127.0.0.1:9000"
+        #</FilesMatch>
+    </Directory>
+    ErrorLog \${APACHE_LOG_DIR}/$ServerName-error.log
+    # Possible values include: debug, info, notice, warn, error, crit,
+    # alert, emerg.
+    LogLevel warn
+    CustomLog \${APACHE_LOG_DIR}/$ServerName-access.log combined
+</VirtualHost>
+_EOF_
+}
+function create_ssl_vhost {
+cat <<- _EOF_
+<IfModule mod_ssl.c>
+<VirtualHost *:443>
+    ServerAdmin webmaster@localhost
+    ServerName $ServerName
+    $ServerAlias
+    DocumentRoot $DocumentRoot
+    <Directory $DocumentRoot>
+        Options +Indexes +FollowSymLinks +MultiViews
+        AllowOverride All
+        Require all granted
+        #<FilesMatch \.php$>
+            # Change this "proxy:unix:/path/to/fpm.socket"
+            # if using a Unix socket
+         #   SetHandler "proxy:fcgi://127.0.0.1:9000"
+        #</FilesMatch>
+    </Directory>
+    ErrorLog \${APACHE_LOG_DIR}/$ServerName-error.log
+    # Possible values include: debug, info, notice, warn, error, crit,
+    # alert, emerg.
+    LogLevel warn
+    CustomLog \${APACHE_LOG_DIR}/$ServerName-access.log combined
+    SSLEngine on
+    SSLCertificateFile  $CertPath/$CertName.pem
+    SSLCertificateKeyFile $KeyPath/$CertName.key
+    <FilesMatch "\.(cgi|shtml|phtml|php)$">
+        SSLOptions +StdEnvVars
+    </FilesMatch>
+    <Directory /usr/lib/cgi-bin>
+				SSLOptions +StdEnvVars
+	</Directory>
+    BrowserMatch "MSIE [2-6]" \\
+        nokeepalive ssl-unclean-shutdown \\
+        downgrade-1.0 force-response-1.0
+    # MSIE 7 and newer should be able to use keepalive
+    BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
+</VirtualHost>
+</IfModule>
+_EOF_
+}
+#Sanity Check - are there two arguments with 2 values?
+if [ "$#" -lt 4 ]; then
+    show_usage
+fi
+CertPath="/etc/ssl/certs"
+KeyPath="/etc/ssl/private"
+#WithSsl="no"
+#Parse flags
+while getopts "d:s:a:n:c:h" OPTION; do
+    case $OPTION in
+        h)
+            show_usage
+            ;;
+        d)
+            DocumentRoot=$OPTARG
+            ;;
+        n)
+            ServerName=$OPTARG
+            ;;
+        a)
+            Alias=$OPTARG
+            ;;
+        s)
+            WithSsl=$OPTARG
+            ;;
+        c)
+            CertName=$OPTARG
+            ;;
+        *)
+            show_usage
+            ;;
+    esac
+done
+# If alias is set:
+if [ "$Alias" != "" ]; then
+    ServerAlias="ServerAlias "$Alias
+else
+    ServerAlias=""
+fi
+# If CertName doesn't get set, set it to ServerName
+if [ "$CertName" == "" ]; then
+    CertName=$ServerName
+fi
+
+if [ ! -d $DocumentRoot ]; then
+    mkdir -p $DocumentRoot
+    #chown USER:USER $DocumentRoot #POSSIBLE IMPLEMENTATION, new flag -u ?
+fi
+
+if [ -z "$WithSsl" ]; then
+    if [ -f "/etc/apache2/sites-enabled/$ServerName.conf" ]; then
+        echo 'vHost already exists. Aborting'
+        show_usage
+    else
+        create_vhost > /etc/apache2/sites-available/${ServerName}.conf
+        cd /etc/apache2/sites-available/ && a2ensite ${ServerName}.conf
+    fi
+else
+    if [ -f "/etc/apache2/sites-enabled/$ServerName-ssl.conf" ]; then
+        echo 'vHost already exists. Aborting'
+        show_usage
+    else
+        create_ssl_vhost >> /etc/apache2/sites-available/${ServerName}-ssl.conf
+    fi
+
+    # Enable Site
+    cd /etc/apache2/sites-available/ && a2ensite ${ServerName}-ssl.conf
+    #service apache2 reload
+fi
\ No newline at end of file
diff --git a/php/7.2/php.ini b/php/7.2/php.ini
new file mode 100644
index 0000000000000000000000000000000000000000..1f70c1dabb7ad33144305200326b5e7cffac2f6d
--- /dev/null
+++ b/php/7.2/php.ini
@@ -0,0 +1,1084 @@
+[PHP]
+
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+
+engine = On
+short_open_tag = Off
+precision = 14
+output_buffering = 4096
+zlib.output_compression = Off
+implicit_flush = Off
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+max_execution_time = 60
+max_input_time = 60
+memory_limit = 512M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+error_reporting = E_ALL
+display_errors = On
+display_startup_errors = On
+log_errors = On
+log_errors_max_len = 1024
+ignore_repeated_errors = Off
+ignore_repeated_source = Off
+report_memleaks = On
+html_errors = On
+
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+variables_order = "GPCS"
+request_order = "GP"
+register_argc_argv = Off
+auto_globals_jit = On
+
+post_max_size = 16M
+default_mimetype = "text/html"
+default_charset = "UTF-8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+enable_dl = Off
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+file_uploads = On
+upload_max_filesize = 8M
+max_file_uploads = 25
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+allow_url_fopen = On
+allow_url_include = Off
+default_socket_timeout = 60
+
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+;date.timezone =
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.583333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.583333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < intput_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+;sqlite3.extension_dir =
+
+[Pcre]
+;PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+;PCRE library recursion limit.
+;Please note that if you set this value to a high number you may consume all
+;the available process stack and eventually crash PHP (due to reaching the
+;stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+;Enables or disables JIT compilation of patterns. This requires the PCRE
+;library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+;pdo_odbc.db2_instance_name
+
+[Pdo_mysql]
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/pdo_mysql.cache_size
+pdo_mysql.cache_size = 2000
+
+; Default socket name for local MySQL connects.  If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/pdo_mysql.default-socket
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; http://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = On
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[SQL]
+; http://php.net/sql.safe-mode
+sql.safe_mode = Off
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db    =  Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user  =  Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw    =  Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent).  -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields.  Returns number of bytes to variables.  0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+;birdstep.max_links = -1
+
+[Interbase]
+; Allow or prevent persistent links.
+ibase.allow_persistent = 1
+
+; Maximum number of persistent links.  -1 means no limit.
+ibase.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent).  -1 means no limit.
+ibase.max_links = -1
+
+; Default database name for ibase_connect().
+;ibase.default_db =
+
+; Default username for ibase_connect().
+;ibase.default_user =
+
+; Default password for ibase_connect().
+;ibase.default_password =
+
+; Default charset for ibase_connect().
+;ibase.default_charset =
+
+; Default timestamp format.
+ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
+
+; Default date format.
+ibase.dateformat = "%Y-%m-%d"
+
+; Default time format.
+ibase.timeformat = "%H:%M:%S"
+
+[MySQLi]
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links.  -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; If mysqlnd is used: Number of cache slots for the internal result set cache
+; http://php.net/mysqli.cache_size
+mysqli.cache_size = 2000
+
+; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects.  If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysql_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password!  And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_statistics
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+; http://php.net/mysqlnd.collect_memory_statistics
+mysqlnd.collect_memory_statistics = On
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; http://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+; http://php.net/mysqlnd.log_mask
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+; http://php.net/mysqlnd.mempool_default_size
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+; http://php.net/mysqlnd.net_cmd_buffer_size
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+; http://php.net/mysqlnd.net_read_buffer_size
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+; http://php.net/mysqlnd.net_read_timeout
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+; http://php.net/mysqlnd.sha256_server_public_key
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; http://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; http://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; http://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; http://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle 11g Database Resident
+; Connection Pooling (DRCP).  To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; http://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables statement prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; http://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; http://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links.  -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent).  -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler.  In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+;     session.save_path = "N;/path"
+;
+; where N is an integer.  Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories.  This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+;         You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+;         use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+;     session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept uninitialized session ID and regenerate
+; session ID if browser sends uninitialized session ID. Strict mode protects
+; applications from session fixation via session adoption vulnerability. It is
+; disabled by default for maximum compatibility, but enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Handler used to serialize data.  php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started
+; on every session initialization. The probability is calculated by using
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator
+; and gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using the following equation:
+; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
+; session.gc_divisor is the denominator in the equation. Setting this value to 1
+; when the session.gc_divisor value is 100 will give you approximately a 1% chance
+; the gc will run on any give request. Increasing this value to 1000 will give you
+; a 0.1% chance the gc will run on any give request. For high volume production servers,
+; this is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+;       (see session.save_path above), then garbage collection does *not*
+;       happen automatically.  You will need to do your own garbage
+;       collection through a shell script, cron entry, or some other method.
+;       For example, the following script would is the equivalent of
+;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+;          find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+;   to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+;   in publicly accessible computer.
+; - User may access your site with the same session ID
+;   always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; http://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; http://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute pathes, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+;   4  (4 bits: 0-9, a-f)
+;   5  (5 bits: 0-9, a-v)
+;   6  (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq =  "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; http://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+;  0: Jump over assertion at run-time
+;  1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = 1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertationException on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+; Eval the expression with current error_reporting().  Set to true if you want
+; error_reporting(0) around the eval().
+; http://php.net/assert.quiet-eval
+;assert.quiet_eval = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; http://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; http://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a components typlib on com_load()
+; http://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; http://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; http://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_traslation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < intput_encoding < mbsting.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+;       portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; overload(replace) single byte functions by mbstring functions.
+; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
+; etc. Possible values are 0,1,2,4 or combination of them.
+; For example, 7 for overload everything.
+; 0: No overload
+; 1: Overload mail() function
+; 2: Overload str*() functions
+; 4: Overload ereg*() functions
+; http://php.net/mbstring.func-overload
+;mbstring.func_overload = 0
+
+; enable strict encoding detection.
+; Default: Off
+;mbstring.strict_detection = On
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel    = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel    = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[mcrypt]
+; For more information about mcrypt settings see http://php.net/mcrypt-module-open
+
+; Directory where to load mcrypt algorithms
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.algorithms_dir=
+
+; Directory where to load mcrypt modes
+; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
+;mcrypt.modes_dir=
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; If enabled, a fast shutdown sequence is used for the accelerated code
+; Depending on the used Memory Manager this may cause some incompatibilities.
+;opcache.fast_shutdown=0
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0xffffffff
+
+;opcache.inherited_hack=1
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x  blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; This should improve performance, but requires appropriate OS configuration.
+;opcache.huge_code_pages=0
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+; Local Variables:
+; tab-width: 4
+; End:
diff --git a/php/7.2/start b/php/7.2/start
new file mode 100755
index 0000000000000000000000000000000000000000..acc8ae22683c6203ca97bfe578fd7cc257254990
--- /dev/null
+++ b/php/7.2/start
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+
+if [ -z "$VHOST_HOSTNAME"  -o -z "$VHOST_DOCROOT" ]; then
+   echo "dont create vhost : hostname or docroot empty"
+#
+#
+else
+#    echo "create :  create_vhost -d $VHOST_DOCROOT -n $VHOST_HOSTNAME"
+    /usr/local/bin/create_vhost -d  $VHOST_DOCROOT -n $VHOST_HOSTNAME
+#    echo "create cert : openssl req -subj '/CN=$VHOST_HOSTNAME/O=dev. team/C=fr' -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout /etc/ssl/private/$VHOST_HOSTNAME.key -out /etc/ssl/certs/$VHOST_HOSTNAME.pem"
+    openssl req -subj '/CN=$VHOST_HOSTNAME/O=dev. team/C=fr' -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout /etc/ssl/private/$VHOST_HOSTNAME.key -out /etc/ssl/certs/$VHOST_HOSTNAME.pem
+#    echo "create ssl vhost : create_vhost -d $VHOST_DOCROOT -s $VHOST_HOSTNAME"
+    /usr/local/bin/create_vhost -d  $VHOST_DOCROOT -n $VHOST_HOSTNAME -s yes
+
+fi
+
+echo "start apache foreground"
+apache2-foreground
\ No newline at end of file