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

62 lines
1.5 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": "^8.0",
"danog/class-finder": "^0.4",
"phpdocumentor/reflection-docblock": "^5.2",
"phpstan/phpdoc-parser": "^1.2",
"symfony/yaml": "^6.0"
},
"require-dev": {
"vimeo/psalm": "dev-master",
"amphp/php-cs-fixer-config": "dev-master",
"friendsofphp/php-cs-fixer": "^2",
"phabel/phabel": "^1"
},
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"autoload": {
"psr-4": {
"danog\\PhpDoc\\": "src/"
}
},
"bin": [
"bin/phpdoc"
],
"scripts": {
"build": [
"@cs-fix",
"@phpdoc"
],
"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": "@phpdoc"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phabel/phabel": true
}
},
"extra": {
"phabel": {
"revision": 0
}
}
}