From 609df751fef83092fe4efad49be537b414b9f8de Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 23 Jan 2019 09:33:59 +0100 Subject: v1.2.0 --- composer.json | 54 ++++++++++++++++++++++++++++++++++++++++++ php-zendframework-zendxml.spec | 12 ++++++---- 2 files changed, 61 insertions(+), 5 deletions(-) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..045b1ec --- /dev/null +++ b/composer.json @@ -0,0 +1,54 @@ +{ + "name": "zendframework/zendxml", + "description": "Utility library for XML usage, best practices, and security in PHP", + "license": "BSD-3-Clause", + "keywords": [ + "zf", + "zendframework", + "xml", + "security" + ], + "support": { + "issues": "https://github.com/zendframework/ZendXml/issues", + "source": "https://github.com/zendframework/ZendXml", + "rss": "https://github.com/zendframework/ZendXml/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "zendframework/zend-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + }, + "autoload": { + "psr-4": { + "ZendXml\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendXmlTest\\": "test/" + } + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev", + "dev-develop": "1.3.x-dev" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + } +} diff --git a/php-zendframework-zendxml.spec b/php-zendframework-zendxml.spec index 135e769..66ceab4 100644 --- a/php-zendframework-zendxml.spec +++ b/php-zendframework-zendxml.spec @@ -1,13 +1,13 @@ # remirepo/Fedora spec file for php-zendframework-zendxml # -# Copyright (c) 2015-2018 Remi Collet +# Copyright (c) 2015-2019 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 267db6a2c431a08a8f8ff0f1f4c302a5ba6f5b99 +%global gh_commit eceab37a591c9e140772a1470338258857339e00 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner zendframework %global gh_project zendxml @@ -20,11 +20,10 @@ %endif Name: php-%{gh_owner}-%{gh_project} -Version: 1.1.0 +Version: 1.2.0 Release: 1%{?dist} Summary: Zend Framework %{library} component -Group: Development/Libraries License: BSD URL: https://framework.zend.com/ Source0: %{gh_commit}/%{name}-%{version}-%{gh_short}.tgz @@ -95,7 +94,7 @@ require_once '%{buildroot}%{php_home}/%{library}/autoload.php'; EOF ret=0 -for cmd in php php56 php70 php71 php72; do +for cmd in php php56 php70 php71 php72 php73; do if which $cmd; then $cmd %{_bindir}/phpunit --verbose || ret=1 fi @@ -115,6 +114,9 @@ exit $ret %changelog +* Wed Jan 23 2019 Remi Collet - 1.2.0-1 +- update to 1.2.0 + * Thu May 3 2018 Remi Collet - 1.1.0-1 - update to 1.1.0 -- cgit