chriha / laravel-api-documentation
description
Installs: 11 981
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: ^8.0|^8.1|^8.2|^8.3
- illuminate/http: ^9.0|^10.0|^11.0
- illuminate/routing: ^9.0|^10.0|^11.0
- illuminate/support: ^9.0|^10.0|^11.0
- illuminate/view: ^9.0|^10.0|^11.0
- symfony/yaml: ^6.0|^7.0
Requires (Dev)
- laravel/pint: ^1.7
- orchestra/testbench-core: ^7.1
- phpunit/phpunit: ^9.1
README
This package helps providing a parsed Swagger documentation by using your OpenAPI YAML files.
Getting Started
Installation
composer require chriha/laravel-api-documentation
Path to your specification
By default, the OpenAPI YAML specifications should be inside ./resources/api/...
. In this directory, you can
create a file for each version, e.g. v1.yml
, v2.yml
, v3.yml
and so on.
API version info
Each version (file) will provide an endpoint (e.g. v1.yml
leads to /api/v1
) with all the information, specified
under the info key:
... info: version: "v1.0.1" title: "Awesome API" contact: email: "awesome@api.info.com" ...
... will result to the following response body:
{ "version": "v1.0.1", "title": "Awesome API", "contact": { "email": "awesome@api.info.com" } }
Documentation
Will be available via the URI /docs/api/[VERSION]
and the file at /docs/api/[VERSION]/file
.
Configuration
If you would like to change the default configuration, you can publish and update it to your needs:
php artisan vendor:publish --provider="Chriha\ApiDocumentation\ApiDocumentationServiceProvider"
Configuration will then be available in ./config/api-documentation.php
.
Specifications path and naming format
You can change the path to your specifications and the format of your files via the specifications
key in the
configuration.
Changing the middleware
By default, the documentation uses the web
-, the API info endpoint the api
-middleware. You can change this in the
configuration by changing the middleware
key.
Hiding information
If you want to hide keys from the info endpoint (e.g. /api/v1
), you can specify those in the configuration
under specifications.hide
via "dot" notation.
'specifications' => [ 'hide' => [ 'v1' => [ 'contact.email', 'description', ] ], ],
Development
Conventional Commits
Please use conventional commits for automated semantic versioning, if you submit your merge request.
Dry Run Semantic Release
npm i @semantic-release/changelog @semantic-release/git @semantic-release/exec -D GITHUB_TOKEN=YOUR_GITHUB_TOKEN npx semantic-release --dry-run --no-ci
Contributing
Please read CONTRIBUTING.md for details on the code of conduct, and the process for submitting pull requests.