{ "name": "kelunik/acme-client", "description": "Let's Encrypt / ACME client written in PHP for the CLI.", "keywords": [ "ACME", "letsencrypt", "certificate", "https", "encryption", "ssl", "tls" ], "require": { "php": ">=7.2", "ext-openssl": "*", "amphp/process": "^1.1", "amphp/parallel": "^1.4", "kelunik/acme": "^1", "kelunik/certificate": "^1", "league/climate": "^3.4", "rdlowrey/auryn": "^1.4.4", "webmozart/assert": "^1.3", "symfony/yaml": "^5.3.2", "amphp/log": "^1", "ext-posix": "*" }, "require-dev": { "phpunit/phpunit": "^8 || ^9", "amphp/php-cs-fixer-config": "dev-master", "macfja/phar-builder": "^0.2.6" }, "license": "MIT", "authors": [ { "name": "Niklas Keller", "email": "me@kelunik.com" } ], "autoload": { "psr-4": { "Kelunik\\AcmeClient\\": "src" }, "files": [ "src/functions.php" ] }, "config": { "platform": { "php": "7.4.0" } }, "extra": { "phar-builder": { "compression": "GZip", "name": "acme-client.phar", "output-dir": "build", "include": [ "info", "src", "vendor/kelunik/acme/res" ], "include-dev": false, "skip-shebang": false, "entry-point": "bin/acme", "events": { "command.package.start": [ "mkdir -p info", "git describe --tags > info/build.version", "php -r 'echo time();' > info/build.time", "rm -rf vendor/amphp/file/travis", "rm -rf vendor/amphp/parallel/travis" ], "command.package.end": [ "rm -rf info", "chmod +x build/acme-client.phar" ] } } } }