jeffreyvanhees / scramble-model-states
Add Spatie's Model States package support for Scramble (Laravel)
v0.0.2
2025-02-28 10:05 UTC
Requires
- php: ^8.0
- dedoc/scramble: ^0.11.9||^0.12.10
- spatie/laravel-model-states: ^2.11
README
This package adds support for laravel-model-states to dedoc/scramble by providing an extension. After installing the extension, all possible states are added as possible values to the response body, like Scramble does with an enum.
Installation
Install the extention with composer via composer require jeffreyvanhees/scramble-model-states
Usage
Add the extenstion to config/scramble.php
:
<?php return [ // ... 'extensions' => [ \JeffreyVanHees\ScrambleModelStates\ModelStateToSchema::class ], ];