├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── composer.json ├── data └── currencies.yaml ├── phpunit.xml.dist └── src ├── Cache.php ├── CacheInstance.php ├── Csv.php ├── Debug.php ├── Dict.php ├── DiskCache.php ├── Env.php ├── File.php ├── Helper.php ├── Html.php ├── Image.php └── Session.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /data/currencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/data/currencies.yaml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/CacheInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/CacheInstance.php -------------------------------------------------------------------------------- /src/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Csv.php -------------------------------------------------------------------------------- /src/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Debug.php -------------------------------------------------------------------------------- /src/Dict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Dict.php -------------------------------------------------------------------------------- /src/DiskCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/DiskCache.php -------------------------------------------------------------------------------- /src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Env.php -------------------------------------------------------------------------------- /src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/File.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Helper.php -------------------------------------------------------------------------------- /src/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Html.php -------------------------------------------------------------------------------- /src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Image.php -------------------------------------------------------------------------------- /src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncan3dc/php-helpers/HEAD/src/Session.php --------------------------------------------------------------------------------