The package I'm using is Swagger-php
I currently generate swagger file by executing:
./vendor/bin/openapi --output storage/app/swagger/swagger.json --exclude tests --exclude storage --exclude vendor ./
And I have some models that I share between multiple api`s so I want swagger schema definition to live with those models at
./vendor/utilities/php-general-tools/src/models/
So I need to include that folder but its currently excluded.. the error shown is
$ref "#/components/schemas/" not found for @OA\JsonContent() in ...
I was able to solve this.. so apparently you can add multiple paths as last argument separated by space like
so both
./
and./vendor/utilities/php-general-tools/src/models/
will be scanned for annotations