Add script 'get-openssl-version.sh'.

This commit is contained in:
2023-06-21 11:09:08 +02:00
parent 0a7a61049a
commit 14056b44dd
5032 changed files with 340126 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"name": "splitbrain/php-cli",
"description": "Easy command line scripts for PHP with opt parsing and color output. No dependencies",
"keywords": [
"cli",
"console",
"terminal",
"command line",
"getopt",
"optparse",
"argparse"
],
"license": "MIT",
"authors": [
{
"name": "Andreas Gohr",
"email": "andi@splitbrain.org"
}
],
"require": {
"php": ">=5.3.0"
},
"suggest": {
"psr/log": "Allows you to make the CLI available as PSR-3 logger"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"splitbrain\\phpcli\\": "src"
}
}
}