From 24e3361493ba338a77b2233d052f2eac325e20f8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 21 Apr 2016 06:03:53 +0200 Subject: php-zendframework-zend-ldap: 2.6.1 --- composer.json | 43 ++++++++++++++++++++++++++++++++++++++++ php-zendframework-zend-ldap.spec | 11 ++++++---- 2 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..6a72b43 --- /dev/null +++ b/composer.json @@ -0,0 +1,43 @@ +{ + "name": "zendframework/zend-ldap", + "description": "provides support for LDAP operations including but not limited to binding, searching and modifying entries in an LDAP directory", + "license": "BSD-3-Clause", + "keywords": [ + "zf2", + "ldap" + ], + "homepage": "https://github.com/zendframework/zend-ldap", + "autoload": { + "psr-4": { + "Zend\\Ldap\\": "src/" + } + }, + "require": { + "php": ">=5.5", + "ext-ldap": "*", + "zendframework/zend-stdlib": "~2.5" + }, + "require-dev": { + "zendframework/zend-config": "~2.5", + "zendframework/zend-eventmanager": "~2.5", + "fabpot/php-cs-fixer": "1.7.*", + "phpunit/PHPUnit": "~4.0", + "php-mock/php-mock-phpunit": "~0.3" + }, + "suggest": { + "zendframework/zend-eventmanager": "Zend\\EventManager component" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "branch-alias": { + "dev-master": "2.5-dev", + "dev-develop": "2.6-dev" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Ldap\\": "test/" + } + } +} diff --git a/php-zendframework-zend-ldap.spec b/php-zendframework-zend-ldap.spec index 16ff7c6..ad0daba 100644 --- a/php-zendframework-zend-ldap.spec +++ b/php-zendframework-zend-ldap.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # %global bootstrap 0 -%global gh_commit 920863c447f167f7f1e90f982bdc2532e7a8bf24 +%global gh_commit 78e9807f9d21effcab6264f9396e6b24779f212a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner zendframework %global gh_project zend-ldap @@ -20,8 +20,8 @@ %endif Name: php-%{gh_owner}-%{gh_project} -Version: 2.6.0 -Release: 2%{?dist} +Version: 2.6.1 +Release: 1%{?dist} Summary: Zend Framework %{library} component Group: Development/Libraries @@ -144,6 +144,9 @@ rm -rf %{buildroot} %changelog +* Thu Apr 21 2016 Remi Collet - 2.6.1-1 +- update to 2.6.1 + * Fri Feb 12 2016 Remi Collet - 2.6.0-2 - add build dependency on php-mock-phpunit @@ -151,4 +154,4 @@ rm -rf %{buildroot} - update to 2.6.0 * Tue Aug 4 2015 Remi Collet - 2.5.1-1 -- initial package \ No newline at end of file +- initial package -- cgit