diff options
| -rw-r--r-- | composer.json | 2 | ||||
| -rw-r--r-- | php-sebastian-exporter3.spec | 11 | 
2 files changed, 8 insertions, 5 deletions
diff --git a/composer.json b/composer.json index b49f953..50e3be7 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@      },      "prefer-stable": true,      "require": { -        "php": "^7.0", +        "php": ">=7.0",          "sebastian/recursion-context": "^3.0"      },      "require-dev": { diff --git a/php-sebastian-exporter3.spec b/php-sebastian-exporter3.spec index c1bdbb5..743e042 100644 --- a/php-sebastian-exporter3.spec +++ b/php-sebastian-exporter3.spec @@ -7,7 +7,7 @@  # Please, preserve the changelog entries  #  %global bootstrap    0 -%global gh_commit    68609e1261d215ea5b21b7987539cbfbe156ec3e +%global gh_commit    6b853149eab67d4da22291d36f5b0631c0fd856e  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     sebastianbergmann  %global gh_project   exporter @@ -24,7 +24,7 @@  %endif  Name:           php-%{pk_vendor}-%{pk_project}%{major} -Version:        3.1.2 +Version:        3.1.3  Release:        1%{?dist}  Summary:        Export PHP variables for visualization @@ -49,7 +49,7 @@ BuildRequires:  php-sebastian-recursion-context3  %endif  # from composer.json -#        "php": "^7.0", +#        "php": ">=7.0",  #        "sebastian/recursion-context": "^3.0"  Requires:       php(language) >= 7.0  %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 @@ -98,7 +98,7 @@ touch vendor/autoload.php  : Run upstream test suite  ret=0 -for cmd in php php70 php71 php72 php73 php74; do +for cmd in php php72 php73 php74 php80; do    if which $cmd; then      %{_bindir}/php -d include_path=.:%{buildroot}%{_datadir}/php:%{_datadir}/php \      %{_bindir}/phpunit6  --verbose || ret=1 @@ -117,6 +117,9 @@ exit $ret  %changelog +* Mon Nov 30 2020 Remi Collet <remi@remirepo.net> - 3.1.3-1 +- update to 3.1.3 (no change) +  * Sun Sep 15 2019 Remi Collet <remi@remirepo.net> - 3.1.2-1  - update to 3.1.2  | 
