├── .editorconfig ├── .github └── workflows │ └── php.yml ├── .styleci.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json ├── prefill.php └── src ├── Facades └── TaiwanIdentityCard.php ├── IdentityCardServiceProvider.php ├── IdentityCardValidator.php └── TaiwanIdentityCard.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/composer.json -------------------------------------------------------------------------------- /prefill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/prefill.php -------------------------------------------------------------------------------- /src/Facades/TaiwanIdentityCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/src/Facades/TaiwanIdentityCard.php -------------------------------------------------------------------------------- /src/IdentityCardServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/src/IdentityCardServiceProvider.php -------------------------------------------------------------------------------- /src/IdentityCardValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/src/IdentityCardValidator.php -------------------------------------------------------------------------------- /src/TaiwanIdentityCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-dojo/twid/HEAD/src/TaiwanIdentityCard.php --------------------------------------------------------------------------------