├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── include.php ├── install ├── autoloader.php ├── index.php └── version.php └── lib └── Psr4Autoloader.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximaster/tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximaster/tools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximaster/tools/HEAD/composer.json -------------------------------------------------------------------------------- /include.php: -------------------------------------------------------------------------------- 1 |