2015-08-04 04:48:03 +00:00
|
|
|
{
|
2012-06-08 19:39:36 +00:00
|
|
|
"name": "phpseclib/phpseclib",
|
|
|
|
"type": "library",
|
2012-06-10 00:04:07 +00:00
|
|
|
"description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
|
2012-06-08 18:28:42 +00:00
|
|
|
"keywords": [
|
|
|
|
"security",
|
|
|
|
"crypto",
|
|
|
|
"cryptography",
|
|
|
|
"encryption",
|
|
|
|
"signature",
|
|
|
|
"signing",
|
2012-06-10 00:04:07 +00:00
|
|
|
"rsa",
|
|
|
|
"aes",
|
2013-11-23 20:25:26 +00:00
|
|
|
"blowfish",
|
|
|
|
"twofish",
|
2012-06-10 00:04:07 +00:00
|
|
|
"ssh",
|
|
|
|
"sftp",
|
|
|
|
"x509",
|
|
|
|
"x.509",
|
|
|
|
"asn1",
|
|
|
|
"asn.1",
|
2012-06-08 18:28:42 +00:00
|
|
|
"BigInteger"
|
2022-06-04 15:31:21 +00:00
|
|
|
],
|
2022-08-11 13:20:51 +00:00
|
|
|
"homepage": "https://phpseclib.com/",
|
2012-06-08 19:39:36 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
2012-06-08 20:57:26 +00:00
|
|
|
"name": "Jim Wigginton",
|
|
|
|
"email": "terrafrost@php.net",
|
2013-11-23 18:46:04 +00:00
|
|
|
"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",
|
2012-06-08 20:57:26 +00:00
|
|
|
"role": "Developer"
|
2016-04-10 16:30:59 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Graham Campbell",
|
|
|
|
"email": "graham@alt-three.com",
|
|
|
|
"role": "Developer"
|
2022-08-11 13:03:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jack Worman",
|
|
|
|
"email": "jack.worman@gmail.com",
|
|
|
|
"role": "Developer",
|
|
|
|
"homepage": "https://jackworman.com"
|
2012-06-08 19:39:36 +00:00
|
|
|
}
|
|
|
|
],
|
2012-06-08 20:57:26 +00:00
|
|
|
"require": {
|
2022-08-11 13:25:16 +00:00
|
|
|
"php": ">=8.1",
|
2022-06-04 15:31:21 +00:00
|
|
|
"paragonie/constant_time_encoding": "^2"
|
2012-06-08 20:57:26 +00:00
|
|
|
},
|
2013-11-23 19:29:27 +00:00
|
|
|
"require-dev": {
|
2022-07-07 01:43:09 +00:00
|
|
|
"ext-xml": "*",
|
2023-02-12 04:08:27 +00:00
|
|
|
"brianium/paratest": "^6.6",
|
2022-10-16 02:16:45 +00:00
|
|
|
"friendsofphp/php-cs-fixer": "^3.12",
|
|
|
|
"php-parallel-lint/php-parallel-lint": "^1.3",
|
|
|
|
"squizlabs/php_codesniffer": "^3.7",
|
|
|
|
"vimeo/psalm": "^4.29"
|
2013-11-23 19:29:27 +00:00
|
|
|
},
|
2012-06-08 20:57:26 +00:00
|
|
|
"suggest": {
|
2015-07-23 01:02:28 +00:00
|
|
|
"ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
|
2016-04-10 16:30:59 +00:00
|
|
|
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
|
2012-06-10 00:04:07 +00:00
|
|
|
"ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
|
2022-07-15 14:55:12 +00:00
|
|
|
"ext-dom": "Install the DOM extension to load XML formatted public keys."
|
2012-06-08 20:57:26 +00:00
|
|
|
},
|
2012-06-08 19:39:36 +00:00
|
|
|
"autoload": {
|
2015-08-03 15:07:20 +00:00
|
|
|
"files": [
|
|
|
|
"phpseclib/bootstrap.php"
|
|
|
|
],
|
2014-06-01 20:09:16 +00:00
|
|
|
"psr-4": {
|
2019-11-07 05:41:40 +00:00
|
|
|
"phpseclib3\\": "phpseclib/"
|
2014-12-02 02:54:44 +00:00
|
|
|
}
|
2022-02-23 02:48:51 +00:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"phpseclib3\\Tests\\": "tests/"
|
|
|
|
}
|
2022-02-27 22:35:58 +00:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"sort-packages": true
|
2022-07-23 02:58:10 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-10-16 02:16:45 +00:00
|
|
|
"lint": "vendor/bin/parallel-lint --show-deprecated build phpseclib tests",
|
|
|
|
"php_codesniffer": "vendor/bin/phpcs --standard=build/php_codesniffer.xml",
|
|
|
|
"php_codesniffer-fix": "vendor/bin/phpcbf --standard=build/php_codesniffer.xml",
|
|
|
|
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=build/php-cs-fixer.php --diff --using-cache=no --dry-run",
|
|
|
|
"php-cs-fixer-fix": "vendor/bin/php-cs-fixer fix --config=build/php-cs-fixer.php --diff --using-cache=no",
|
|
|
|
"psalm": "vendor/bin/psalm --config=build/psalm.xml --no-cache --long-progress --threads=4",
|
|
|
|
"psalm-set-baseline": "vendor/bin/psalm --config=build/psalm.xml --no-cache --long-progress --set-baseline=psalm_baseline.xml --threads=4",
|
|
|
|
"test": "vendor/bin/paratest --verbose --configuration=tests/phpunit.xml --runner=WrapperRunner",
|
2022-07-23 02:58:10 +00:00
|
|
|
"all-quality-tools": [
|
|
|
|
"@lint",
|
|
|
|
"@phpcs",
|
|
|
|
"@php-cs-fixer",
|
|
|
|
"@psalm",
|
|
|
|
"@test"
|
|
|
|
]
|
2012-06-08 19:39:36 +00:00
|
|
|
}
|
|
|
|
}
|