├── .gitattributes ├── .gitignore ├── MyLogPHP.class.php ├── MyLogPHP.conf ├── README.md └── composer.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llagerlof/MyLogPHP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llagerlof/MyLogPHP/HEAD/.gitignore -------------------------------------------------------------------------------- /MyLogPHP.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llagerlof/MyLogPHP/HEAD/MyLogPHP.class.php -------------------------------------------------------------------------------- /MyLogPHP.conf: -------------------------------------------------------------------------------- 1 | enabled=true -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llagerlof/MyLogPHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llagerlof/MyLogPHP/HEAD/composer.json --------------------------------------------------------------------------------