Updates to 3rd party libraries

Add Dockerfile and specific docker-php.ini
This commit is contained in:
2018-08-28 21:27:13 -04:00
parent 9edd6c1c35
commit d52454d1bb
511 changed files with 45960 additions and 2739 deletions

View File

@ -0,0 +1,50 @@
<?php
/**
* Constant with database server to connect to
*
* @var string
*/
define('PHP_DB_SERVER', '{IP|hostname}');
/**
* Constant with database user to connect with
*
* @var string
*/
define('PHP_DB_USER', '{username}');
/**
* Constant with database password to connect with
*
* @var string
*/
define('PHP_DB_PWD', '{password}');
/**
* Constant with database schema to connect to
*
* @var string
*/
define('PHP_DB_SCHEMA', '{schema}');
/**
* Constant to define that we want to return an object
*
* @var int
*/
define('MYSQLI_OBJECT', 4);
/**
* Constant to return consistent date format
*
* @var string
*/
define('MYSQL_DATE', 'Y-m-d');
/**
* Constant to return consistent datetime format
*
* @var string
*/
define('MYSQL_DATETIME', 'Y-m-d H:i:s');

File diff suppressed because it is too large Load Diff