Skip to content
Snippets Groups Projects
composer.json 926 B
Newer Older
Gregor Gawol's avatar
Gregor Gawol committed
{
    "name": "finc/rvk-tree",
    "description": "Module for RVK tree",
    "license": "GPL-2.0",
    "authors": [
        {
            "name": "Gregor Gawol",
            "email": "gawol@ub.uni-leipzig.de"
        }
    ],
    "require": {
        "php": ">=7.1",
        "finc/vufindhttp-psrcompat": "^0.0.2",
        "psr/http-client": "^1.0",
        "guzzlehttp/psr7": "^1.4",
        "ext-json": "*",
        "finc/symfony-serializer-zend-bridge": "^0.0.1",
        "symfony/property-info": "^3.4"
    },
    "autoload": {
        "psr-4": {
            "finc\\Rvktree\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "finc\\Rvktree\\tests": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit --bootstrap vendor/autoload.php tests"
    },
    "extra": {
        "vufind": {
            "themes": {
                "res/theme": "rvktree"
            }
        }
    }
}