mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-12 16:36:30 +00:00
d9e9504fba
* PSR2-1.0: Fix indentation phpcbf did not fix. Remove PSR2.Methods.FunctionCallSignature.SpaceAfterOpenBracket exception. Use phpcbf to fix PHP code to ruleset. Ignore coding guidelines in ANSI switch block. Base code sniffer ruleset on PSR2 rather than PEAR. Update PHP Code Sniffer to 2.3.3 Conflicts: build/code-sniffer-ruleset-tests.xml build/code-sniffer-ruleset.xml composer.lock phpseclib/Crypt/DES.php phpseclib/Crypt/Hash.php phpseclib/Crypt/RSA.php phpseclib/File/X509.php phpseclib/Math/BigInteger.php phpseclib/Net/SFTP.php phpseclib/Net/SSH1.php phpseclib/Net/SSH2.php tests/Functional/Net/SFTPUserStoryTest.php tests/Unit/Crypt/TwofishTest.php
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "phpseclib/phpseclib",
|
|
"type": "library",
|
|
"description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
|
|
"keywords": [
|
|
"security",
|
|
"crypto",
|
|
"cryptography",
|
|
"encryption",
|
|
"signature",
|
|
"signing",
|
|
"rsa",
|
|
"aes",
|
|
"blowfish",
|
|
"twofish",
|
|
"ssh",
|
|
"sftp",
|
|
"x509",
|
|
"x.509",
|
|
"asn1",
|
|
"asn.1",
|
|
"BigInteger"
|
|
],
|
|
"homepage": "http://phpseclib.sourceforge.net",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Jim Wigginton",
|
|
"email": "terrafrost@php.net",
|
|
"role": "Lead Developer"
|
|
},
|
|
{
|
|
"name": "Patrick Monnerat",
|
|
"email": "pm@datasphere.ch",
|
|
"role": "Developer"
|
|
},
|
|
{
|
|
"name": "Andreas Fischer",
|
|
"email": "bantu@phpbb.com",
|
|
"role": "Developer"
|
|
},
|
|
{
|
|
"name": "Hans-Jürgen Petrich",
|
|
"email": "petrich@tronic-media.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.3"
|
|
},
|
|
"require-dev": {
|
|
"phing/phing": "~2.7",
|
|
"phpunit/phpunit": "~4.0",
|
|
"sami/sami": "~2.0",
|
|
"squizlabs/php_codesniffer": "~2.0"
|
|
},
|
|
"suggest": {
|
|
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a wide variety of cryptographic operations.",
|
|
"ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations."
|
|
},
|
|
"include-path": ["phpseclib/"],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"phpseclib\\": "phpseclib/"
|
|
}
|
|
}
|
|
}
|