├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── example └── example.php ├── phpunit.xml ├── src └── TinyID │ └── TinyID.php └── tests └── Unit └── TinyIDTest.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/composer.json -------------------------------------------------------------------------------- /example/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/example/example.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/TinyID/TinyID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/src/TinyID/TinyID.php -------------------------------------------------------------------------------- /tests/Unit/TinyIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krowinski/tinyID/HEAD/tests/Unit/TinyIDTest.php --------------------------------------------------------------------------------