├── .styleci.yml ├── changelog.md ├── composer.json ├── contributing.md ├── database └── migrations │ └── guestpass_0_0_1_create_guestpasses_table.php ├── license.md ├── phpunit.xml ├── readme.md └── src ├── Controllers └── Access.php ├── GuestPass.php ├── GuestPassFacade.php ├── GuestPassService.php └── GuestPassServiceProvider.php /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | linting: true -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/contributing.md -------------------------------------------------------------------------------- /database/migrations/guestpass_0_0_1_create_guestpasses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/database/migrations/guestpass_0_0_1_create_guestpasses_table.php -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/readme.md -------------------------------------------------------------------------------- /src/Controllers/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/src/Controllers/Access.php -------------------------------------------------------------------------------- /src/GuestPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/src/GuestPass.php -------------------------------------------------------------------------------- /src/GuestPassFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/src/GuestPassFacade.php -------------------------------------------------------------------------------- /src/GuestPassService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/src/GuestPassService.php -------------------------------------------------------------------------------- /src/GuestPassServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeroen-G/GuestPass/HEAD/src/GuestPassServiceProvider.php --------------------------------------------------------------------------------