Skip to content

Commit b599f7f

Browse files
committed
Fix version in composer
1 parent eec82dd commit b599f7f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ FROM php:7.2-cli
44
ENV dir /home/app
55

66
RUN useradd -ms /bin/bash app
7+
RUN apt-get install git
78

89
RUN curl -s https://getcomposer.org/installer | php
910
RUN mv composer.phar /usr/local/bin/composer
@@ -16,6 +17,6 @@ WORKDIR ${dir}
1617

1718
USER app
1819

19-
RUN composer require jw-player/jwplatform-php
20+
RUN composer require jw-player/jwplatform-php:*
2021

2122
CMD [ "php", "examples/upload_video.php" ]

VERSION

-1
This file was deleted.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"minimum-stability": "dev",
1212
"prefer-stable": true,
1313
"homepage": "https://developer.jwplayer.com/jw-platform/",
14-
"version": "1.5.0",
14+
"version": "v1.6.1",
1515
"license": "MIT",
1616
"authors": [
1717
{

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Jwplayer;
44

55
class JwplatformAPI {
6-
private $_version = '1.6';
6+
private $_version = '1.6.1';
77
private $_url = 'https://api.jwplatform.com/v1';
88
private $_library;
99

0 commit comments

Comments
 (0)