PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Cyril Ogana   PHP User Credentials   composer.json   Download  
File: composer.json
Role: Configuration script
Content type: text/plain
Description: Composer bootstrap file
Class: PHP User Credentials
Implement password authentication policies
Author: By
Last change: Update to Multiotp 5.6+, PHPass 8+, PHP 7.3+ and PHPUnit 9+
Date: 3 years ago
Size: 1,288 bytes
 

Contents

Class file image Download
{
    "keywords": [
        "User Authentication"
    ],
    "autoload" : {
        "files" : [
            "src/config/NamedConstant.php",
            "lib/Multiotp/multiotp.class.php"
        ],
        "psr-4" : {
            "cymapgt\\Exception\\" : "src/Exception",
            "cymapgt\\core\\application\\authentication\\UserCredential\\" : "src"
        }
    },
    "autoload-dev" : {
        "psr-4" : {
            "cymapgt\\core\\application\\authentication\\UserCredential\\tests\\" : "tests"
        }
    },
    "name" : "cymapgt/usercredential",
    "type" : "library",
    "description" : "Package for Password authentication policy management",
    "license" : "BSD-3-clause",
    "require" : {
        "php" : ">=7.3.0",
        "cymapgt/phpass" : "^8.0.0",
        "freedsx/ldap" : "*"
    },
    "require-dev" : {
        "phpunit/phpunit" : "9.*",
        "geerlingguy/ping" : "*"
    },
    "support" : {
        "email" : "cogana@gmail.com",
        "source" : "https://github.com/cymapgt/UserCredential"
    },
    "authors" : [{
        "name" : "Cyril Ogana",
        "email" : "cogana@gmail.com",
        "homepage" : "http://www.cymapk.com",
        "role" : "Maintainer"
    }],
    "homepage" : "https://github.com/cymapgt/UserCredential"
}