mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 14:27:09 +00:00
Update w/ lead change info...
This commit is contained in:
parent
f3ca83e7e4
commit
e6cc6a9c74
6 changed files with 33 additions and 4 deletions
25
LICENSE
25
LICENSE
|
@ -20,3 +20,28 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
|
Copyright (c) 2013, Jim Jagielski <jimjag@php.net>.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
||||||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
1
gnupg.c
1
gnupg.c
|
@ -7,6 +7,7 @@
|
||||||
| in the accompanying LICENSE file are met. |
|
| in the accompanying LICENSE file are met. |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
||||||
|
| Copyright (c) 2013, Jim Jagielski <jimjag@php.net> |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
| in the accompanying LICENSE file are met. |
|
| in the accompanying LICENSE file are met. |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
||||||
|
| Copyright (c) 2013, Jim Jagielski <jimjag@php.net> |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<lead>
|
<lead>
|
||||||
<name>Thilo Raufeisen</name>
|
<name>Jim Jagielski</name>
|
||||||
<user>traufeisen</user>
|
<user>jimjag</user>
|
||||||
<email>traufeisen@php.net</email>
|
<email>jimjag@php.net</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2010-07-20</date>
|
<date>2010-07-20</date>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
| in the accompanying LICENSE file are met. |
|
| in the accompanying LICENSE file are met. |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
||||||
|
| Copyright (c) 2013, Jim Jagielski <jimjag@php.net> |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -18,7 +19,7 @@
|
||||||
extern zend_module_entry gnupg_module_entry;
|
extern zend_module_entry gnupg_module_entry;
|
||||||
#define phpext_gnupg_ptr &gnupg_module_entry
|
#define phpext_gnupg_ptr &gnupg_module_entry
|
||||||
|
|
||||||
#define PHP_GNUPG_VERSION "1.3.2-dev"
|
#define PHP_GNUPG_VERSION "1.3.3-dev"
|
||||||
|
|
||||||
#ifdef PHP_WIN32
|
#ifdef PHP_WIN32
|
||||||
#define PHP_GNUPG_API __declspec(dllexport)
|
#define PHP_GNUPG_API __declspec(dllexport)
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
| in the accompanying LICENSE file are met. |
|
| in the accompanying LICENSE file are met. |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
| Copyright (c) 2006, Thilo Raufeisen <traufeisen@php.net> |
|
||||||
|
| Copyright (c) 2013, Jim Jagielski <jimjag@php.net> |
|
||||||
+--------------------------------------------------------------------+
|
+--------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue