Official PHP gnupg extension repository
Find a file
2021-12-31 22:14:42 +00:00
phpc@4521e6b11a Update phpc with addition of ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX 2021-09-19 20:02:12 +01:00
tests also cleanup socket files 2021-02-15 07:17:40 +01:00
.gitignore Create a new README and some minor info updates 2021-04-10 19:42:28 +01:00
.gitmodules Make initial port to phpc 2016-05-21 21:27:06 +01:00
config.m4 config.m4: Add largefile support 2021-03-07 16:56:25 +00:00
EXPERIMENTAL initial release 2005-10-07 18:59:50 +00:00
gnupg.c Fix bug #81004 - subkey curve not available before gpgme 1.5.0 2021-12-30 22:11:28 +00:00
gnupg_keylistiterator.c Fix iterator prototypes for PHP 8.1 (#35) 2021-09-19 20:01:29 +01:00
LICENSE Update LICENSE file 2016-07-24 19:01:52 +01:00
NEWS.md Update NEWS 2021-12-30 22:13:43 +00:00
package.xml Release 1.5.1 2021-12-31 22:14:42 +00:00
php_gnupg.h Release 1.5.1 2021-12-31 22:14:42 +00:00
php_gnupg_keylistiterator.h Port gnupg_keylistiterator to use phpc 2016-05-22 18:52:23 +01:00
README.md Create a new README and some minor info updates 2021-04-10 19:42:28 +01:00
TODO.md Update TODO list with one more item 2021-08-15 21:35:26 +01:00
UPGRADING.md Create a new README and some minor info updates 2021-04-10 19:42:28 +01:00

PHP GnuPG

The php-gnupg is a wrapper for GpgME library that provides access to GnuPG.

Installation

Linux

Before starting with installation of this extensions, the GpgME library has to be installed. It has got installation packages on the most Linux distributions. The minimal version of GpgME that is supported is 1.3.0. The extension supports GnuPG version 1 and 2.

Of course PHP has to be installed too. The minimal version that is supported is 5.3.2.

PECL

This extension is available on PECL.

$ sudo pecl install gnupg

Manual Installation

It's important to have a git installed as it's necessary for recursive fetch of phpc.

First clone recursively the repository

git clone --recursive https://github.com/php-gnupg/php-gnupg.git

Then go to the created directory and compile the extension. The PHP development package has to be installed (command phpize must be available).

cd php-gnupg
phpize
./configure
make
sudo make install

Finally the following line needs to be added to php.ini

extension=gnupg.so

or for PHP 8+ it's just

extension=gnupg

Windows

The extension is not currently supported on Windows due to unavailable GpgME library builds that would be supported by PHP.

Documentation

The extension documentation is now available in the PHP-Manual: http://php.net/manual/en/book.gnupg.php