diff options
| -rw-r--r-- | composer.json | 3 | ||||
| -rw-r--r-- | php-phpmailer6.spec | 14 | 
2 files changed, 11 insertions, 6 deletions
diff --git a/composer.json b/composer.json index 9bff756..ee4e890 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,8 @@      ],      "require": {          "php": ">=5.5.0", -        "ext-ctype": "*" +        "ext-ctype": "*", +        "ext-filter": "*"      },      "require-dev": {          "friendsofphp/php-cs-fixer": "^2.2", diff --git a/php-phpmailer6.spec b/php-phpmailer6.spec index 9e2ac07..8b414b4 100644 --- a/php-phpmailer6.spec +++ b/php-phpmailer6.spec @@ -7,7 +7,7 @@  # Please preserve changelog entries  #  # Github -%global gh_commit    7a4459cff6abeb86b63cdbad760f567252f3f39c +%global gh_commit    44d49bab5ab1fef721d3ee07e75dc0865ddf4cc6  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     PHPMailer  %global gh_project   PHPMailer @@ -23,7 +23,7 @@  %global php_home     %{_datadir}/php  Name:           php-%{pk_project}%{major} -Version:        6.0.2 +Version:        6.0.3  Release:        1%{?dist}  Summary:        Full-featured email creation and transfer class for PHP @@ -64,12 +64,13 @@ BuildRequires:  %{_sbindir}/smtp-sink  # From composer.json, "require": {  #    "require": {  #        "php": ">=5.5.0", -#        "ext-ctype": "*" +#        "ext-ctype": "*", +#        "ext-filter": "*"  Requires:       php(language) >= 5.5  Requires:       php-ctype +Requires:       php-filter  # from phpcompatinfo report on version 6.0.1  Requires:       php-date -Requires:       php-filter  Requires:       php-hash  Requires:       php-imap  Requires:       php-intl @@ -169,7 +170,7 @@ popd  : Run upstream test suite  ret=0 -for cmd in php php56 php70 php71 php72; do +for cmd in php php70 php71 php72; do    if which $cmd; then      $cmd  -d "sendmail_path=$PWD/test/fakesendmail.sh -t -i " \        %{_bindir}/phpunit --exclude slow,pop3,languages --verbose || ret=1 @@ -193,6 +194,9 @@ exit $ret  %changelog +* Sun Jan  7 2018 Remi Collet <remi@remirepo.net> - 6.0.3-1 +- Update to 6.0.3 +  * Fri Dec  1 2017 Remi Collet <remi@remirepo.net> - 6.0.2-1  - Update to 6.0.2  | 
