gitextract_uq89ngc_/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── application/ │ ├── config/ │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── mimes.php │ │ ├── minify.php │ │ └── routes.php │ ├── controllers/ │ │ ├── index.html │ │ └── welcome.php │ ├── errors/ │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── libraries/ │ │ ├── Minify.php │ │ └── minify/ │ │ ├── JSMin.php │ │ ├── JSMinPlus.php │ │ ├── cssmin-v3.0.1.php │ │ └── cssminify.php │ └── views/ │ ├── index.html │ └── welcome_message.php ├── assets/ │ ├── css/ │ │ ├── browser-specific.css │ │ └── style.css │ └── js/ │ ├── helpers.js │ └── jqModal.js ├── composer.json ├── index.php ├── phpunit.xml └── tests/ ├── MinifyTest.php └── bootstrap.php