Skip to content

Commit

Permalink
Set PHP>7.2.0 and bump version to 2.0.0, fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
andypost committed Aug 21, 2020
1 parent 2d762a8 commit 3da4c13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ language: php
jobs:
fast_finish: true
include:
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
Expand Down
6 changes: 3 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<description>
A PHP extension to track progress of a file upload, including details on the speed of the upload, estimated time remaining, and access to the contents of the file as it is being uploaded.

The uploadprogress extension works on PHP 5, PHP 7, and PHP 8 (since version 1.1.2). It requires the use of the Apache HTTP Server with mod_php. Other web servers and PHP-FPM are not yet supported.
The uploadprogress extension works on PHP 7.2+, and PHP 8 (since version 1.1.2). It requires the use of the Apache HTTP Server with mod_php. Other web servers and PHP-FPM are not yet supported.

See https://github.com/php/pecl-php-uploadprogress for documentation and examples.
</description>
Expand All @@ -30,7 +30,7 @@
<date>2020-01-28</date>
<time>17:20:00</time>
<version>
<release>1.1.3</release>
<release>2.0.0</release>
<api>1.0.0</api>
</version>
<stability>
Expand Down Expand Up @@ -107,7 +107,7 @@
<dependencies>
<required>
<php>
<min>5.2.0</min>
<min>7.2.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
Expand Down
2 changes: 1 addition & 1 deletion php_uploadprogress.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ extern "C" {
extern zend_module_entry uploadprogress_module_entry;
#define phpext_uploadprogress_ptr &uploadprogress_module_entry

#define PHP_UPLOADPROGRESS_VERSION "1.1.3"
#define PHP_UPLOADPROGRESS_VERSION "2.0.0"

#ifdef PHP_WIN32
#define PHP_UPLOADPROGRESS_API __declspec(dllexport)
Expand Down

0 comments on commit 3da4c13

Please sign in to comment.