1
0
mirror of https://github.com/danog/phpdoc.git synced 2024-11-26 12:04:47 +01:00
phpdoc/composer.json

41 lines
1.1 KiB
JSON

{
"name": "danog/phpdoc",
"description": "Simple markdown PHPDOC documentation generator with psalm type annotation support.",
"type": "project",
"license": "AGPL-3.0-only",
"homepage": "https://phpdoc.daniil.it",
"keywords": ["phpdoc", "markdown", "documentation", "psalm"],
"require": {
"php": ">=7.4.0",
"danog/class-finder": "^0.4",
"phpdocumentor/reflection-docblock": "^5.2"
},
"require-dev": {
"vimeo/psalm": "dev-master",
"amphp/php-cs-fixer-config": "dev-master",
"friendsofphp/php-cs-fixer": "^2"
},
"authors": [{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}],
"autoload": {
"psr-4": {
"danog\\PhpDoc\\": "src/"
}
},
"bin": [
"bin/phpdoc"
],
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
"psalm": "psalm",
"docs": "php tools/build_docs.php"
}
}