composer.json 1.09 KB
{
    "name" : "org_heigl/authldap",
    "type" : "library",
    "description": "Enables wordpress-authentication via LDAP",
    "keywords": ["ldap","authenticate", "auth", "wordpress"],
    "homepage": "http://github.com/heiglandreas/authLdap",
    "license": "MIT",
    "authors": [{
        "name": "Andreas Heigl",
        "email": "andreas@heigl.org",
        "homepage": "http://andreas.heigl.org",
        "role": "Developer"
    }],
    "require" : {
        "php": ">=7.4",
      "ext-ldap": "*"
    },
    "require-dev": {
        "automattic/wordbless": "^0.3.1"
    },
    "autoload" : {
        "classmap" : [
            "authLdap.php"
        ],
        "psr-4" : {
            "Org_Heigl\\AuthLdap\\" : "src/"
        }
    },
    "autoload-dev" : {
        "psr-4" : {
            "Org_Heigl\\AuthLdapTest\\" : "tests/"
        }
    },
    "scripts": {
        "post-update-cmd": "php -r \"copy('vendor/automattic/wordbless/src/dbless-wpdb.php', 'wordpress/wp-content/db.php');\""
    },
    "config": {
        "allow-plugins": {
            "roots/wordpress-core-installer": true
        }
    }
}