├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── ruleset.xml └── src ├── Config ├── .gitkeep └── short-link.php ├── Database └── Migrations │ ├── .gitkeep │ └── 2022_05_07_213807_create_short_links_table.php ├── Models └── ShortLink.php ├── Providers └── ShortLinkServiceProvider.php └── Services └── ShortLinkService.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | /.idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/composer.json -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/Config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Config/short-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/src/Config/short-link.php -------------------------------------------------------------------------------- /src/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Database/Migrations/2022_05_07_213807_create_short_links_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/src/Database/Migrations/2022_05_07_213807_create_short_links_table.php -------------------------------------------------------------------------------- /src/Models/ShortLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/src/Models/ShortLink.php -------------------------------------------------------------------------------- /src/Providers/ShortLinkServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/src/Providers/ShortLinkServiceProvider.php -------------------------------------------------------------------------------- /src/Services/ShortLinkService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chowjiawei/short-link/HEAD/src/Services/ShortLinkService.php --------------------------------------------------------------------------------