Breaking Changes
- Some of the functionality of the
PHPMailerPGP
-class has been extracted to another class calledPGPKeyManager
. This new class is now responsible forimportKey()
,importKeyFile()
,deleteKey()
,getKeys()
andlookupKeyServer()
. If you are using any of these methods and you likely are, you have to change your code. Those methods have just been moved. There is no change in their signatures (other than the class name of course). - The namespace of all classes contained in this library has changed from
PHPMailer\PHPMailer\
toPHPMailer\PHPMailerPGP\
. This allows the developers ofPHPMailer
and us to use separated namespaces.
Other news
There are tests now! Although the coverage is rather low right now (83 %), it will be increased in the future.