{
    "name": "humbug/php-scoper",
    "description": "Prefixes all PHP namespaces in a file or directory.",
    "license": "MIT",
    "authors": [
        {
            "name": "Bernhard Schussek",
            "email": "bschussek@gmail.com"
        },
        {
            "name": "Théo Fidry",
            "email": "theo.fidry@gmail.com"
        },
        {
            "name": "Pádraic Brady",
            "email": "padraic.brady@gmail.com"
        }
    ],

    "minimum-stability": "dev",
    "prefer-stable": true,
    "require": {
        "php": "^7.2",
        "composer/package-versions-deprecated": "^1.8",
        "jetbrains/phpstorm-stubs": "dev-master",
        "nikic/php-parser": "^4.0",
        "symfony/console": "^3.2 || ^4.0",
        "symfony/filesystem": "^3.2 || ^4.0",
        "symfony/finder": "^3.2 || ^4.0"
    },
    "require-dev": {
        "bamarni/composer-bin-plugin": "^1.1",
        "humbug/box": "^3.8",
        "phpunit/phpunit": "^8.0"
    },
    "replace": {
        "humbug/php-scoper": "self.version"
    },

    "bin": ["bin/php-scoper"],
    "autoload": {
        "files": [
            "src/functions.php",
            "src/json.php"
        ],
        "psr-4": {
            "Humbug\\PhpScoper\\": "src/"
        }
    },
    "autoload-dev": {
        "files": [
            "tests/functions.php",
            "src/json.php"
        ],
        "psr-4": {
            "Humbug\\PhpScoper\\": "tests/"
        }
    },

    "config": {
        "bin-dir": "bin",
        "sort-packages": true,
        "platform": {
            "php": "7.2.0"
        }
    },
    "extra": {
        "bamarni-bin": {
            "bin-links": false
        },
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    }
}
