gitextract_z_dotten/ ├── .editorconfig ├── .github/ │ ├── CODE_OF_CONDUCT.md │ └── CONTRIBUTING.md ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── docker/ │ ├── 7.0-apache.Dockerfile │ ├── 7.0-cgi.Dockerfile │ ├── 7.0-cli.Dockerfile │ ├── 7.0-lighttpd.Dockerfile │ ├── 7.0-litespeed.Dockerfile │ ├── 7.0-nginx.Dockerfile │ ├── 7.0.Dockerfile │ ├── 7.1-apache.Dockerfile │ ├── 7.1-cgi.Dockerfile │ ├── 7.1-cli.Dockerfile │ ├── 7.1-lighttpd.Dockerfile │ ├── 7.1-litespeed.Dockerfile │ ├── 7.1-nginx.Dockerfile │ ├── 7.1.Dockerfile │ ├── 7.2-apache.Dockerfile │ ├── 7.2-cgi.Dockerfile │ ├── 7.2-cli.Dockerfile │ ├── 7.2-lighttpd.Dockerfile │ ├── 7.2-litespeed.Dockerfile │ ├── 7.2-nginx.Dockerfile │ ├── 7.2.Dockerfile │ ├── 7.3-apache.Dockerfile │ ├── 7.3-cgi.Dockerfile │ ├── 7.3-cli.Dockerfile │ ├── 7.3-lighttpd.Dockerfile │ ├── 7.3-litespeed.Dockerfile │ ├── 7.3-nginx.Dockerfile │ ├── 7.3.Dockerfile │ ├── 7.4-apache.Dockerfile │ ├── 7.4-cgi.Dockerfile │ ├── 7.4-cli.Dockerfile │ ├── 7.4-lighttpd.Dockerfile │ ├── 7.4-litespeed.Dockerfile │ ├── 7.4-nginx.Dockerfile │ ├── 7.4.Dockerfile │ ├── hooks/ │ │ ├── build │ │ └── post_push │ └── tags/ │ ├── apache/ │ │ ├── etc/ │ │ │ └── service/ │ │ │ └── apache/ │ │ │ └── run │ │ └── sbin/ │ │ ├── runit-wrapper │ │ └── runsvdir-start │ ├── lighttpd/ │ │ ├── etc/ │ │ │ ├── lighttpd/ │ │ │ │ └── example.conf │ │ │ └── service/ │ │ │ ├── lighttpd/ │ │ │ │ └── run │ │ │ └── php-fpm/ │ │ │ └── run │ │ ├── sbin/ │ │ │ ├── runit-wrapper │ │ │ └── runsvdir-start │ │ └── var/ │ │ └── www/ │ │ └── localhost/ │ │ └── htdocs/ │ │ └── index.php │ ├── litespeed/ │ │ ├── etc/ │ │ │ └── service/ │ │ │ └── lsws/ │ │ │ └── run │ │ └── sbin/ │ │ ├── runit-wrapper │ │ └── runsvdir-start │ └── nginx/ │ ├── etc/ │ │ ├── nginx/ │ │ │ └── conf.d/ │ │ │ └── default.conf │ │ └── service/ │ │ ├── nginx/ │ │ │ └── run │ │ └── php-fpm/ │ │ └── run │ ├── sbin/ │ │ ├── runit-wrapper │ │ └── runsvdir-start │ └── var/ │ └── www/ │ └── html/ │ └── index.php └── tests/ ├── 7.0-apache/ │ ├── goss.yaml │ └── test ├── 7.0-cgi/ │ ├── goss.yaml │ └── test ├── 7.0-composer/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.0-extensions/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.0-litespeed/ │ ├── goss.yaml │ └── test ├── 7.0-nginx/ │ ├── goss.yaml │ └── test ├── 7.1-apache/ │ ├── goss.yaml │ └── test ├── 7.1-cgi/ │ ├── goss.yaml │ └── test ├── 7.1-composer/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.1-extensions/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.1-iconv/ │ ├── Dockerfile │ ├── goss.yaml │ ├── iconv.php │ └── test ├── 7.1-litespeed/ │ ├── goss.yaml │ └── test ├── 7.1-nginx/ │ ├── goss.yaml │ └── test ├── 7.1-phpunit/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.2-apache/ │ ├── goss.yaml │ └── test ├── 7.2-argon/ │ ├── Dockerfile │ ├── argon.php │ ├── goss.yaml │ └── test ├── 7.2-cgi/ │ ├── goss.yaml │ └── test ├── 7.2-composer/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.2-extensions/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.2-litespeed/ │ ├── goss.yaml │ └── test ├── 7.2-nginx/ │ ├── goss.yaml │ └── test ├── 7.2-phpunit/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.3-apache/ │ ├── goss.yaml │ └── test ├── 7.3-argon/ │ ├── Dockerfile │ ├── argon.php │ ├── goss.yaml │ └── test ├── 7.3-cgi/ │ ├── goss.yaml │ └── test ├── 7.3-composer/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.3-extensions/ │ ├── Dockerfile │ ├── goss.yaml │ └── test ├── 7.3-litespeed/ │ ├── goss.yaml │ └── test ├── 7.3-nginx/ │ ├── goss.yaml │ └── test ├── 7.3-phpunit/ │ ├── Dockerfile │ ├── goss.yaml │ └── test └── test