├── .gitlab-ci.yml ├── LICENSE ├── composer.json ├── config └── hashids.php ├── include ├── helper.php └── routes.php ├── phpunit.example.xml └── src ├── Console └── Commands │ ├── DecodeId.php │ └── EncodeId.php ├── Controllers └── DebugController.php ├── Exceptions ├── DecodeException.php └── HashidsException.php ├── Facades └── Hashids.php ├── Hashids.php ├── HashidsFactory.php ├── HashidsManager.php ├── HashidsServiceProvider.php ├── Middleware └── DecodePublicIdMiddleware.php └── ModelTraits └── PublicId.php /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | @copyright LINGXI -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/composer.json -------------------------------------------------------------------------------- /config/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/config/hashids.php -------------------------------------------------------------------------------- /include/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/include/helper.php -------------------------------------------------------------------------------- /include/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/include/routes.php -------------------------------------------------------------------------------- /phpunit.example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/phpunit.example.xml -------------------------------------------------------------------------------- /src/Console/Commands/DecodeId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Console/Commands/DecodeId.php -------------------------------------------------------------------------------- /src/Console/Commands/EncodeId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Console/Commands/EncodeId.php -------------------------------------------------------------------------------- /src/Controllers/DebugController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Controllers/DebugController.php -------------------------------------------------------------------------------- /src/Exceptions/DecodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Exceptions/DecodeException.php -------------------------------------------------------------------------------- /src/Exceptions/HashidsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Exceptions/HashidsException.php -------------------------------------------------------------------------------- /src/Facades/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Facades/Hashids.php -------------------------------------------------------------------------------- /src/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Hashids.php -------------------------------------------------------------------------------- /src/HashidsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/HashidsFactory.php -------------------------------------------------------------------------------- /src/HashidsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/HashidsManager.php -------------------------------------------------------------------------------- /src/HashidsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/HashidsServiceProvider.php -------------------------------------------------------------------------------- /src/Middleware/DecodePublicIdMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/Middleware/DecodePublicIdMiddleware.php -------------------------------------------------------------------------------- /src/ModelTraits/PublicId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-hashids/HEAD/src/ModelTraits/PublicId.php --------------------------------------------------------------------------------