├── .gitattributes ├── .gitignore ├── .styleci.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Config └── signed-url.php ├── Facade.php ├── Middleware └── ValidateSignedUrl.php ├── Provider.php └── SignedUrl.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/composer.json -------------------------------------------------------------------------------- /src/Config/signed-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/src/Config/signed-url.php -------------------------------------------------------------------------------- /src/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/src/Facade.php -------------------------------------------------------------------------------- /src/Middleware/ValidateSignedUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/src/Middleware/ValidateSignedUrl.php -------------------------------------------------------------------------------- /src/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/src/Provider.php -------------------------------------------------------------------------------- /src/SignedUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaunting/signed-url/HEAD/src/SignedUrl.php --------------------------------------------------------------------------------