Skip to content

Commit

Permalink
Fix version in composer
Browse files Browse the repository at this point in the history
  • Loading branch information
ksindi committed Oct 27, 2019
1 parent eec82dd commit b599f7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM php:7.2-cli
ENV dir /home/app

RUN useradd -ms /bin/bash app
RUN apt-get install git

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

USER app

RUN composer require jw-player/jwplatform-php
RUN composer require jw-player/jwplatform-php:*

CMD [ "php", "examples/upload_video.php" ]
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://developer.jwplayer.com/jw-platform/",
"version": "1.5.0",
"version": "v1.6.1",
"license": "MIT",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Jwplayer;

class JwplatformAPI {
private $_version = '1.6';
private $_version = '1.6.1';
private $_url = 'https://api.jwplatform.com/v1';
private $_library;

Expand Down

0 comments on commit b599f7f

Please sign in to comment.