├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── discovery.json ├── phpunit.xml ├── src ├── HangoutsDriver.php └── Providers │ └── HangoutsServiceProvider.php ├── stubs └── hangouts.php └── tests ├── HangoutsDriverTest.php └── fixtures ├── annotation.json └── dm.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .discovery/ 3 | .DS_Store 4 | composer.lock 5 | .php_cs.cache 6 | /vendor/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/composer.json -------------------------------------------------------------------------------- /discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/discovery.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/HangoutsDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/src/HangoutsDriver.php -------------------------------------------------------------------------------- /src/Providers/HangoutsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/src/Providers/HangoutsServiceProvider.php -------------------------------------------------------------------------------- /stubs/hangouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/stubs/hangouts.php -------------------------------------------------------------------------------- /tests/HangoutsDriverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/tests/HangoutsDriverTest.php -------------------------------------------------------------------------------- /tests/fixtures/annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/tests/fixtures/annotation.json -------------------------------------------------------------------------------- /tests/fixtures/dm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman/driver-hangouts/HEAD/tests/fixtures/dm.json --------------------------------------------------------------------------------