{
    "name": "zircote/swagger-php",
    "type": "library",
    "license": "Apache-2.0",
    "bin": ["bin/swagger"],
    "description": "Swagger-PHP - Generate interactive documentation for your RESTful API using phpdoc annotations",
    "keywords": ["json", "rest", "api", "service discovery"],
    "homepage": "https://github.com/zircote/swagger-php/",
    "authors": [
        {
            "name": "Robert Allen",
            "email": "zircote@gmail.com",
            "homepage": "http://www.zircote.com"
        },
        {
            "name": "Bob Fanger",
            "email": "bfanger@gmail.com",
            "homepage": "http://bfanger.nl"
        }
    ],
    "config": {
        "bin-dir": "bin"
    },
    "require": {
        "php": ">=7.2",
        "doctrine/annotations": "^1.7",
        "symfony/finder": ">=3.4"
    },
    "autoload": {
        "psr-4": {
            "Swagger\\": "src"
        },
        "files": ["src/functions.php"]
    },
    "require-dev": {
        "squizlabs/php_codesniffer": ">=2.7",
        "phpunit/phpunit": "^8.5.21 || ^9"
    },
    "autoload-dev": {
        "psr-4": {
            "SwaggerTests\\": "tests/",
            "AnotherNamespace\\": "tests/Fixtures/AnotherNamespace"
        }
    },
    "scripts": {
        "test": "phpunit && phpcs -p --extensions=php --standard=PSR2 --error-severity=1 --warning-severity=0 ./src ./tests"
    }
}
