├── .gitignore ├── README.md ├── check.bat ├── install.bat ├── start_server.bat ├── stop_server.bat ├── support ├── base.php ├── check.php ├── createprocess.exe ├── download.php ├── install.php ├── my-medium.ini ├── php │ ├── libcrypto-1_1-x64.dll │ ├── libssl-1_1-x64.dll │ ├── php.exe │ ├── php.ini │ ├── php7ts.dll │ ├── php_openssl.dll │ └── vcruntime140.dll ├── support │ ├── cacert.pem │ ├── crc32_stream.php │ ├── deflate_stream.php │ ├── emulate_curl.php │ ├── http.php │ ├── simple_html_dom.php │ ├── utf_utils.php │ └── web_browser.php └── upgrade.php ├── upgrade.bat └── vc_redist └── vcruntime140.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/README.md -------------------------------------------------------------------------------- /check.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/check.bat -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/install.bat -------------------------------------------------------------------------------- /start_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/start_server.bat -------------------------------------------------------------------------------- /stop_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/stop_server.bat -------------------------------------------------------------------------------- /support/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/base.php -------------------------------------------------------------------------------- /support/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/check.php -------------------------------------------------------------------------------- /support/createprocess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/createprocess.exe -------------------------------------------------------------------------------- /support/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/download.php -------------------------------------------------------------------------------- /support/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/install.php -------------------------------------------------------------------------------- /support/my-medium.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/my-medium.ini -------------------------------------------------------------------------------- /support/php/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /support/php/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /support/php/php.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/php.exe -------------------------------------------------------------------------------- /support/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/php.ini -------------------------------------------------------------------------------- /support/php/php7ts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/php7ts.dll -------------------------------------------------------------------------------- /support/php/php_openssl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/php_openssl.dll -------------------------------------------------------------------------------- /support/php/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/php/vcruntime140.dll -------------------------------------------------------------------------------- /support/support/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/cacert.pem -------------------------------------------------------------------------------- /support/support/crc32_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/crc32_stream.php -------------------------------------------------------------------------------- /support/support/deflate_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/deflate_stream.php -------------------------------------------------------------------------------- /support/support/emulate_curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/emulate_curl.php -------------------------------------------------------------------------------- /support/support/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/http.php -------------------------------------------------------------------------------- /support/support/simple_html_dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/simple_html_dom.php -------------------------------------------------------------------------------- /support/support/utf_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/utf_utils.php -------------------------------------------------------------------------------- /support/support/web_browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/support/web_browser.php -------------------------------------------------------------------------------- /support/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/support/upgrade.php -------------------------------------------------------------------------------- /upgrade.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/upgrade.bat -------------------------------------------------------------------------------- /vc_redist/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiclesoft/portable-apache-maria-db-php-for-windows/HEAD/vc_redist/vcruntime140.dll --------------------------------------------------------------------------------