mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:11:09 +00:00
c18e0dc66a
- Add missing use statement in SecureTestEmail - Address https://github.com/friendica/friendica/issues/12011#issuecomment-1321196332 - phpseclib version 3 dependency is implied from the core so it is removed from the addon
29 lines
674 B
JSON
29 lines
674 B
JSON
{
|
|
"name": "singpolyma/openpgp-php",
|
|
"description": "Pure-PHP implementation of the OpenPGP Message Format (RFC 4880)",
|
|
"license": "Unlicense",
|
|
"authors": [
|
|
{
|
|
"name": "Arto Bendiken",
|
|
"email": "arto.bendiken@gmail.com"
|
|
},
|
|
{
|
|
"name": "Stephen Paul Weber",
|
|
"email": "singpolyma@singpolyma.net"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^5.6 || ^7.0 || ^8.0",
|
|
"phpseclib/phpseclib": "^3.0.14"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.0"
|
|
},
|
|
"suggest": {
|
|
"ext-mcrypt": "required if you use encryption cast5",
|
|
"ext-openssl": "required if you use encryption cast5"
|
|
},
|
|
"autoload": {
|
|
"classmap": ["lib/"]
|
|
}
|
|
}
|