Files
scribe/composer.json
2019-08-29 08:04:08 +01:00

63 lines
1.9 KiB
JSON

{
"name": "mpociot/laravel-apidoc-generator",
"license": "MIT",
"description": "Generate beautiful API documentation from your Laravel application",
"keywords": [
"API",
"Documentation",
"Laravel"
],
"homepage": "http://github.com/mpociot/laravel-apidoc-generator",
"authors": [
{
"name": "Marcel Pociot",
"email": "m.pociot@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"fzaninotto/faker": "~1.8",
"illuminate/routing": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
"illuminate/console": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
"mpociot/documentarian": "^0.2.0",
"mpociot/reflection-docblock": "^1.0.1",
"ramsey/uuid": "^3.8",
"league/flysystem": "^1.0"
},
"require-dev": {
"orchestra/testbench": "3.5.* || 3.6.* || 3.7.*",
"phpunit/phpunit": "^6.0.0 || ^7.4.0",
"dingo/api": "2.0.0-alpha1",
"mockery/mockery": "^1.2.0",
"league/fractal": "^0.17.0",
"phpstan/phpstan": "^0.9.0"
},
"suggest": {
"league/fractal": "Required for transformers support",
"nunomaduro/collision": "For better reporting of errors that are thrown when generating docs"
},
"autoload": {
"psr-4": {
"Mpociot\\ApiDoc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mpociot\\ApiDoc\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpstan analyse -c ./phpstan.neon src",
"test": "phpunit --stop-on-failure",
"test-ci": "phpunit --coverage-clover=coverage.xml"
},
"extra": {
"laravel": {
"providers": [
"Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
]
}
}
}