{
    "name": "icanhazstring/composer-unused",
    "description": "Show unused packages by scanning your code",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "static analysis",
        "composer",
        "unused",
        "php-parser"
    ],
    "authors": [
        {
            "name": "Andreas Frömer",
            "email": "composer-unused@icanhazstring.com"
        }
    ],
    "homepage": "https://github.com/composer-unused/composer-unused",
    "support": {
        "issues": "https://github.com/composer-unused/composer-unused/issues",
        "source": "https://github.com/composer-unused/composer-unused"
    },
    "funding": [
        {
            "type": "other",
            "url": "https://paypal.me/icanhazstring"
        },
        {
            "type": "github",
            "url": "https://github.com/sponsors/icanhazstring"
        }
    ],
    "require": {
        "php": "^8.1",
        "ext-json": "*",
        "composer-runtime-api": "^2.0",
        "composer-unused/contracts": "^0.3",
        "composer-unused/symbol-parser": "^0.3.1",
        "composer/xdebug-handler": "^3.0",
        "nikic/php-parser": "^5.0",
        "ondram/ci-detector": "^4.1",
        "phpstan/phpdoc-parser": "^1.25 || ^2",
        "psr/container": "^1.0 || ^2.0",
        "psr/log": "^1.1 || ^2 || ^3",
        "symfony/config": "^6.0 || ^7.0 || ^8.0",
        "symfony/console": "^6.0 || ^7.0 || ^8.0",
        "symfony/dependency-injection": "^6.0 || ^7.0 || ^8.0",
        "symfony/property-access": "^6.0 || ^7.0 || ^8.0",
        "symfony/serializer": "^6.0 || ^7.0 || ^8.0",
        "webmozart/assert": "^1.10 || ^2.0",
        "webmozart/glob": "^4.4"
    },
    "require-dev": {
        "ext-ds": "*",
        "ext-zend-opcache": "*",
        "bamarni/composer-bin-plugin": "^1.8",
        "codeception/verify": "^3.1",
        "dg/bypass-finals": "^1.6",
        "ergebnis/composer-normalize": "^2.49",
        "jangregor/phpstan-prophecy": "^2.1.1",
        "mikey179/vfsstream": "^1.6.10",
        "php-ds/php-ds": "^1.5",
        "phpspec/prophecy-phpunit": "^2.2.0",
        "phpstan/extension-installer": "^1.3",
        "phpstan/phpstan": "^2.1.37",
        "phpstan/phpstan-phpunit": "^2.0.12",
        "phpunit/phpunit": "^9.6.34",
        "roave/security-advisories": "dev-master",
        "squizlabs/php_codesniffer": "^3.13"
    },
    "autoload": {
        "psr-4": {
            "ComposerUnused\\ComposerUnused\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ComposerUnused\\ComposerUnused\\Test\\Integration\\": "tests/Integration",
            "ComposerUnused\\ComposerUnused\\Test\\Unit\\": "tests/Unit",
            "ComposerUnused\\ComposerUnused\\Test\\Stubs\\": "tests/Stubs"
        }
    },
    "bin": [
        "bin/composer-unused"
    ],
    "config": {
        "allow-plugins": {
            "phpstan/extension-installer": true,
            "bamarni/composer-bin-plugin": true,
            "ergebnis/composer-normalize": true
        },
        "preferred-install": "dist",
        "sort-packages": true
    },
    "extra": {
        "bamarni-bin": {
            "bin-links": true,
            "forward-command": true
        }
    },
    "scripts": {
        "analyse": "phpstan analyse --no-progress --memory-limit=512M",
        "check": [
            "@cs-check",
            "@analyse",
            "@test"
        ],
        "cs-check": "phpcs --parallel=50 --cache=data/cs-check.json",
        "cs-fix": "phpcbf --parallel=50",
        "test": "phpunit"
    },
    "scripts-descriptions": {
        "analyse": "Use \"phpstan\" to the analyse static code. See phpstan.neon",
        "check": "Check the coding covention and run the tests",
        "cs-check": "Use \"phpcs\" to check the coding convention. See phpcs.xml",
        "cs-fix": "Use \"phpcbf\" to fix the coding convention. See phpcs.xml",
        "test": "Use \"phpunit\" to run the tests. See phpunit.xml"
    }
}
