add composer.json

This commit is contained in:
Daniel Seifert 2018-10-17 12:55:07 +02:00
parent 6f18d120c6
commit 418b1ad3ba
1 changed files with 43 additions and 0 deletions

43
composer.json Normal file
View File

@ -0,0 +1,43 @@
{
"name": "d3/totp",
"description": "Two-factor authentication for OXID eSales shop",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"d3",
"2FA"
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "http://www.d3data.de",
"role": "Owner"
}
],
"support": {
"email": "support@shopmodule.com"
},
"homepage": "https://www.oxidmodule.com/",
"license": [
"proprietary"
],
"extra": {
"oxideshop": {
"source-directory": "/src",
"target-directory": "d3/totp"
}
},
"require": {
"php": ">=5.6",
"oxid-esales/oxideshop-metapackage-ce": "~6.0.0 || ~6.1.0",
"spomky-labs/otphp": "^8.3 || ^9.0"
},
"autoload": {
"psr-4": {
"D3\\Totp\\": "../../../source/modules/d3/totp"
}
}
}