This repository was archived by the owner on Jul 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 44 - 5.6
55 - 7.0
66 - 7.1
7- - nightly
7+ - 7.3
88
99before_script :
1010 - composer install
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ RUN docker-php-ext-install -j$(nproc) zip \
1717 && pecl install grpc \
1818 && docker-php-ext-enable grpc
1919
20+ RUN pecl install protobuf \
21+ && docker-php-ext-enable protobuf
22+
2023# Composer
2124ENV COMPOSER_HOME /composer
2225ENV PATH /composer/vendor/bin:$PATH
@@ -28,13 +31,14 @@ RUN curl -o /tmp/composer-setup.php https://getcomposer.org/installer \
2831
2932# Install Composer Application Dependencies
3033COPY composer.json /opt/php-pubsub/
31- RUN composer install --no-autoloader --no-scripts --no-interaction \
32- && composer require google/proto-client-php ^0.10.0 \
33- && composer require google/gax
34+ RUN composer install --no-autoloader --no-scripts --no-interaction
3435
3536COPY src /opt/php-pubsub/src
3637COPY your-gcloud-key.json /opt/php-pubsub
3738COPY examples /opt/php-pubsub/examples
39+ COPY phpunit.php /opt/php-pubsub
40+ COPY phpunit.xml /opt/php-pubsub
41+ COPY tests /opt/php-pubsub/tests
3842
3943RUN composer dump-autoload --no-interaction
4044
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 5.1.0 - 2019-02-28
4+
5+ * Bump up google/cloud requirement to ^0.95.0
6+
37## 5.0.1 - 2018-07-27
48
59* Allow setting of maximum number of messages to pull option
Original file line number Diff line number Diff line change 1111 "require" : {
1212 "php" : " >=5.6.0" ,
1313 "superbalist/php-pubsub" : " ^2.0" ,
14- "google/cloud" : " ^0.33.0|^0.34.0|^0.35 .0"
14+ "google/cloud" : " ^0.95 .0"
1515 },
1616 "autoload" : {
1717 "psr-4" : {
You can’t perform that action at this time.
0 commit comments