├── .formatter.yml ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Exception │ └── EmptyRequiredParamsException.php ├── Http │ ├── GuzzleStreamClient.php │ └── StreamClient.php ├── Model │ ├── RetweetedStatus.php │ ├── Tweet.php │ └── User.php └── PublicStream.php └── test ├── PublicStreamTest.php ├── Stub ├── StreamTweetArrayStub.php └── TweetEntityStub.php └── TestCase └── UnitTestCase.php /.formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/.formatter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | vendor/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exception/EmptyRequiredParamsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Exception/EmptyRequiredParamsException.php -------------------------------------------------------------------------------- /src/Http/GuzzleStreamClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Http/GuzzleStreamClient.php -------------------------------------------------------------------------------- /src/Http/StreamClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Http/StreamClient.php -------------------------------------------------------------------------------- /src/Model/RetweetedStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Model/RetweetedStatus.php -------------------------------------------------------------------------------- /src/Model/Tweet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Model/Tweet.php -------------------------------------------------------------------------------- /src/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/Model/User.php -------------------------------------------------------------------------------- /src/PublicStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/src/PublicStream.php -------------------------------------------------------------------------------- /test/PublicStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/test/PublicStreamTest.php -------------------------------------------------------------------------------- /test/Stub/StreamTweetArrayStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/test/Stub/StreamTweetArrayStub.php -------------------------------------------------------------------------------- /test/Stub/TweetEntityStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/test/Stub/TweetEntityStub.php -------------------------------------------------------------------------------- /test/TestCase/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineur/twitter-stream-api/HEAD/test/TestCase/UnitTestCase.php --------------------------------------------------------------------------------