├── .github └── workflows │ └── check.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── composer.json ├── config └── ably.php ├── images └── LaravelSDK-github.png ├── phpunit.xml ├── src ├── AblyFactory.php ├── AblyService.php ├── AblyServiceProvider.php └── Facades │ └── Ably.php └── tests └── AblyLaravelTest.php /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright 2016-2022 Ably Real-time Ltd (ably.com) 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | This repository is owned by the Ably SDK team. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/ably.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/config/ably.php -------------------------------------------------------------------------------- /images/LaravelSDK-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/images/LaravelSDK-github.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AblyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/src/AblyFactory.php -------------------------------------------------------------------------------- /src/AblyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/src/AblyService.php -------------------------------------------------------------------------------- /src/AblyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/src/AblyServiceProvider.php -------------------------------------------------------------------------------- /src/Facades/Ably.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/src/Facades/Ably.php -------------------------------------------------------------------------------- /tests/AblyLaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably/ably-php-laravel/HEAD/tests/AblyLaravelTest.php --------------------------------------------------------------------------------