Newer
Older
smart-home-server / server / composer.json
@Eugene Sukhodolskiy Eugene Sukhodolskiy 14 hours ago 838 bytes Phase 0: gnexus-auth integration infrastructure
{
    "name": "gnexus/smart-home-server",
    "description": "Smart Home Server backend",
    "type": "project",
    "require": {
        "php": ">=8.1",
        "psr/http-client": "^1.0",
        "psr/http-factory": "^1.1",
        "psr/http-message": "^2.0",
        "psr/log": "^3.0",
        "gnexus/auth-client": "@dev"
    },
    "require-dev": {
        "phpunit/phpunit": "^10.0"
    },
    "autoload": {
        "classmap": [
            "Fury/",
            "SHServ/",
            "../automation/"
        ],
        "psr-4": {
            "SHServ\\": "SHServ/"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/"
        ]
    },
    "repositories": [{
        "name": "gnexus-auth-client",
        "type": "vcs",
        "url": "https://git.gnexus.space/root/gnexus-auth-client-php.git"
    }]
}