composer.json 372 Bytes
Newer Older
Juliper committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
    "name": "dnoegel/php-xdg-base-dir",
    "description": "implementation of xdg base directory specification for php",
    "type": "project",
    "license": "MIT",
    "require": {
        "php": ">=5.3.2"
    },
    "require-dev": {
        "phpunit/phpunit": "@stable"
    },
    "autoload": {
        "psr-4": {
            "XdgBaseDir\\": "src/"
        }
    }
}