├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpunit.xml ├── stubs ├── RdKafka.php ├── RdKafka │ ├── Conf.php │ ├── Consumer.php │ ├── ConsumerTopic.php │ ├── Exception.php │ ├── KafkaConsumer.php │ ├── KafkaConsumerTopic.php │ ├── KafkaErrorException.php │ ├── Message.php │ ├── Metadata.php │ ├── Metadata │ │ ├── Broker.php │ │ ├── Collection.php │ │ ├── Partition.php │ │ └── Topic.php │ ├── Producer.php │ ├── ProducerTopic.php │ ├── Queue.php │ ├── Topic.php │ ├── TopicConf.php │ └── TopicPartition.php ├── constants.php └── functions.php └── tests ├── ConstantsTest.php ├── FunctionsTest.php ├── RdKafka ├── ConfTest.php ├── ConsumerTest.php ├── ConsumerTopicTest.php ├── ExceptionTest.php ├── KafkaErrorExceptionTest.php ├── MessageTest.php ├── MetadataTest.php ├── ProducerTest.php ├── ProducerTopicTest.php ├── QueueTest.php ├── TopicConfTest.php └── TopicTest.php └── RdKafkaTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | /build/ 4 | /kafka_2.11-0.9.0.1/ 5 | *.cache 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/phpunit.xml -------------------------------------------------------------------------------- /stubs/RdKafka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka.php -------------------------------------------------------------------------------- /stubs/RdKafka/Conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Conf.php -------------------------------------------------------------------------------- /stubs/RdKafka/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Consumer.php -------------------------------------------------------------------------------- /stubs/RdKafka/ConsumerTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/ConsumerTopic.php -------------------------------------------------------------------------------- /stubs/RdKafka/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Exception.php -------------------------------------------------------------------------------- /stubs/RdKafka/KafkaConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/KafkaConsumer.php -------------------------------------------------------------------------------- /stubs/RdKafka/KafkaConsumerTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/KafkaConsumerTopic.php -------------------------------------------------------------------------------- /stubs/RdKafka/KafkaErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/KafkaErrorException.php -------------------------------------------------------------------------------- /stubs/RdKafka/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Message.php -------------------------------------------------------------------------------- /stubs/RdKafka/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Metadata.php -------------------------------------------------------------------------------- /stubs/RdKafka/Metadata/Broker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Metadata/Broker.php -------------------------------------------------------------------------------- /stubs/RdKafka/Metadata/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Metadata/Collection.php -------------------------------------------------------------------------------- /stubs/RdKafka/Metadata/Partition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Metadata/Partition.php -------------------------------------------------------------------------------- /stubs/RdKafka/Metadata/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Metadata/Topic.php -------------------------------------------------------------------------------- /stubs/RdKafka/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Producer.php -------------------------------------------------------------------------------- /stubs/RdKafka/ProducerTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/ProducerTopic.php -------------------------------------------------------------------------------- /stubs/RdKafka/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Queue.php -------------------------------------------------------------------------------- /stubs/RdKafka/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/Topic.php -------------------------------------------------------------------------------- /stubs/RdKafka/TopicConf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/TopicConf.php -------------------------------------------------------------------------------- /stubs/RdKafka/TopicPartition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/RdKafka/TopicPartition.php -------------------------------------------------------------------------------- /stubs/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/constants.php -------------------------------------------------------------------------------- /stubs/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/stubs/functions.php -------------------------------------------------------------------------------- /tests/ConstantsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/ConstantsTest.php -------------------------------------------------------------------------------- /tests/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/FunctionsTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ConfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ConfTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ConsumerTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ConsumerTopicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ConsumerTopicTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ExceptionTest.php -------------------------------------------------------------------------------- /tests/RdKafka/KafkaErrorExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/KafkaErrorExceptionTest.php -------------------------------------------------------------------------------- /tests/RdKafka/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/MessageTest.php -------------------------------------------------------------------------------- /tests/RdKafka/MetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/MetadataTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ProducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ProducerTest.php -------------------------------------------------------------------------------- /tests/RdKafka/ProducerTopicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/ProducerTopicTest.php -------------------------------------------------------------------------------- /tests/RdKafka/QueueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/QueueTest.php -------------------------------------------------------------------------------- /tests/RdKafka/TopicConfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/TopicConfTest.php -------------------------------------------------------------------------------- /tests/RdKafka/TopicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafka/TopicTest.php -------------------------------------------------------------------------------- /tests/RdKafkaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwn/php-rdkafka-stubs/HEAD/tests/RdKafkaTest.php --------------------------------------------------------------------------------