From abad386ea58fb0e082f5a7ed4ef6e74ad07a7501 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Jan 2022 09:10:55 +0100 Subject: new package --- composer.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..026f4cd --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "code-lts/u2f-php-server", + "description": "Server side handling class for FIDO U2F registration and authentication", + "license":"BSD-2-Clause", + "homepage": "https://github.com/code-lts/U2F-php-server#readme", + "authors": [ + { + "name": "Samuel Hawksby-Robinson", + "email": "samuel@samyoul.com" + }, + { + "name": "William Desportes", + "email": "williamdes@wdes.fr" + } + ], + "support": { + "issues": "https://github.com/code-lts/U2F-php-server/issues", + "source": "https://github.com/code-lts/U2F-php-server" + }, + "scripts": { + "phpunit": "./vendor/bin/phpunit" + }, + "require": { + "php": "^7.1 || ^8.0", + "ext-openssl":"*" + }, + "require-dev": { + "phpunit/phpunit": "^7 || ^8 || ^9" + }, + "autoload": { + "psr-4": { "CodeLts\\U2F\\U2FServer\\": ["src/"] } + }, + "autoload-dev": { + "psr-4": { "CodeLts\\U2F\\U2FServer\\Tests\\": ["test/"] } + }, + "replace": { + "samyoul/u2f-php-server": "*" + } +} -- cgit