| {
    "name": "oire/base64",
    "description": "Url-and filename-safe Base64 handling.",
    "type": "library",
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/Oire/php-code-style"
        }
    ],
    "require": {
        "php": ">=7.3"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^2.16",
        "oire/php-code-style": "dev-master",
        "phpunit/phpunit": "^9",
        "psalm/plugin-phpunit": "^0.15.0",
        "vimeo/psalm": "^4.4"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Andre Polykanine also known as Menelion Elensúlë",
            "email": "[email protected] ",
            "homepage": "https://github.com/Menelion",
            "role": "developer"
        }
    ],
    "support": {
        "issues":   "https://github.com/Oire/Base64/issues",
        "source":   "https://github.com/Oire/Base64"
    },
    "autoload": {
        "psr-4": {
            "Oire\\Base64\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Oire\\Base64\\Tests\\": "tests"
        }
    },
    "config": {
        "sort-packages": true,
        "preferred-install": {
            "*": "dist"
        }
    },
    "scripts": {
        "tests": "vendor/bin/phpunit",
        "coding-style": "vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php_cs.dist",
        "clear": "rm -rf vendor/"
    }
}
 |