diff options
| author | Remi Collet <remi@remirepo.net> | 2022-02-28 08:37:24 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2022-02-28 08:37:24 +0100 | 
| commit | 3e57cad16cc5f71b6bd1d750af8390bfdc7d0672 (patch) | |
| tree | 8fdb48c1c8dd62e67d8134442b06b9cdc3b42423 | |
| parent | fc3d23f9392f5acd27b708b307d47b1fe9a7d472 (diff) | |
update to 2.11.1
| -rw-r--r-- | composer.json | 9 | ||||
| -rw-r--r-- | php-laminas-server.spec | 12 | 
2 files changed, 16 insertions, 5 deletions
diff --git a/composer.json b/composer.json index 5e0bc3b..000d1ac 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,13 @@          "forum": "https://discourse.laminas.dev"      },      "config": { -        "sort-packages": true +        "sort-packages": true, +        "platform": { +            "php": "7.3.99" +        }, +        "allow-plugins": { +            "composer/package-versions-deprecated": true +        }      },      "extra": {      }, @@ -42,6 +48,7 @@              "LaminasTest\\Server\\": "test/"          },          "files": [ +            "test/Reflection/TestAsset/functions.php",              "test/TestAsset/reflectionTestFunction.php"          ]      }, diff --git a/php-laminas-server.spec b/php-laminas-server.spec index cd8b880..5d36148 100644 --- a/php-laminas-server.spec +++ b/php-laminas-server.spec @@ -1,13 +1,13 @@  # remirepo/Fedora spec file for php-php-laminas-server  # -# Copyright (c) 2015-2021 Remi Collet +# Copyright (c) 2015-2022 Remi Collet  # License: CC-BY-SA  # http://creativecommons.org/licenses/by-sa/4.0/  #  # Please, preserve the changelog entries  #  %global bootstrap    0 -%global gh_commit    7582832d56c5488dee4d4753bf3bf2d5f3dc5906 +%global gh_commit    f45e1a6f614a11af8eff5d2d409f12229101cfc1  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     laminas  %global gh_project   laminas-server @@ -22,7 +22,7 @@  %endif  Name:           php-%{gh_project} -Version:        2.11.0 +Version:        2.11.1  Release:        1%{?dist}  Summary:        Laminas Framework %{library} component @@ -154,12 +154,13 @@ cat << 'EOF' | tee vendor/autoload.php  <?php  require_once '%{buildroot}%{php_home}/%{namespace}/%{library}/autoload.php';  \Fedora\Autoloader\Autoload::addPsr4('%{namespace}Test\\%{library}\\', dirname(__DIR__) . '/test'); +require_once 'test/Reflection/TestAsset/functions.php';  require_once 'test/TestAsset/reflectionTestFunction.php';  EOF  : upstream test suite  ret=0 -for cmdarg in "php %{phpunit}" php73 php74 php80 php81; do +for cmdarg in "php %{phpunit}" php74 php80 php81; do    if which $cmdarg; then      set $cmdarg      $1 ${2:-%{_bindir}/phpunit9} --verbose || ret=1 @@ -189,6 +190,9 @@ exit $ret  %changelog +* Mon Feb 28 2022 Remi Collet <remi@remirepo.net> - 2.11.1-1 +- update to 2.11.1 +  * Mon Oct 11 2021 Remi Collet <remi@remirepo.net> - 2.11.0-1  - update to 2.11.0  | 
