├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config └── config.php └── src ├── Facades └── PhpXsendfile.php ├── PhpXsendfile.php └── PhpXsendfileServiceProvider.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | vendor 3 | .idea 4 | composer.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/config/config.php -------------------------------------------------------------------------------- /src/Facades/PhpXsendfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/src/Facades/PhpXsendfile.php -------------------------------------------------------------------------------- /src/PhpXsendfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/src/PhpXsendfile.php -------------------------------------------------------------------------------- /src/PhpXsendfileServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaznv/php-x-sendfile/HEAD/src/PhpXsendfileServiceProvider.php --------------------------------------------------------------------------------