knuckleswtf / scribe-tags2attributes
Automatically convert most Scribe v3 docblock tags to v4 PHP 8 attributes
Installs: 75
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
pkg:composer/knuckleswtf/scribe-tags2attributes
Requires
- php: >=8.0
- rector/rector: 0.14.0
This package is auto-updated.
Last update: 2025-10-10 09:28:42 UTC
README
This package provides a Rector rule to automatically convert most Scribe v3 docblock tags to v4 PHP 8 attributes.
This package will smartly transform the following tags on controller methods to their attribute equivalents:
header,urlParam,queryParam, andbodyParamresponseField,responseandresponseFileapiResource,apiResourceCollection, andapiResourceModeltransformer,transformerCollection, andtransformerModelsubgroupauthenticatedandunauthenticated
It won't transform @group tags or endpoint titles and descriptions (because they can look ugly as attributes).
It will only work on methods in classes. Unfortunately, attributes can't be added to inline (closure) routes in a neat way.
Example:
/* * Do a thing. * * Because you want to. * * @group Endpoints for doing things - * @subgroup Getting started - * @subgroupDescription Get started doing stuff - * @header Test Value - * @response 204 scenario="Nothing to see here" - * @apiResourceCollection App\Http\Resources\UserResource - * @apiResourceModel App\Models\User with=sideProjects,friends states=admin paginate=12,simple - * @responseFile 404 scenario="User not found" responses/not_found.json {"resource": "user"} */ + #[Subgroup('Getting started', 'Get started doing stuff')] + #[Header('Test', 'Value')] + #[Response(status: 204, description: '204, Nothing to see here')] + #[ResponseFromApiResource(UserResource::class, User::class, collection: true, factoryStates: ['admin'], with: ['sideProjects', 'friends'], simplePaginate: 12)] + #[ResponseFromFile('responses/not_found.json', status: 404, merge: '{"resource": "user"}', description: '404, User not found')] public function doSomething()
Usage
-
Make sure the minimum PHP version in your
composer.jsonis 8 (ie you should have"php": ">= 8.0"or similar in your"require"section). -
Install this package
composer require knuckleswtf/scribe-tags2attributes --dev
-
Run the Rector
initcommand to create arector.phpfile in the root of your project./vendor/bin/rector init
-
Put this in the generated
rector.php(delete whatever's in the file):<?php use Rector\Config\RectorConfig; return static function (RectorConfig $rectorConfig): void { $rectorConfig->disableParallel(); $rectorConfig->paths([ __DIR__ . '/app/Http/Controllers', // <- replace this with wherever your controllers are ]); $rectorConfig->importNames(); $rectorConfig->rule(\Knuckles\Scribe\Tags2Attributes\RectorRule::class); };
-
Do a dry run. This will tell Rector to print out the changes that will be made, without actually making them. That way you can inspect and verify that it looks okay. We also recommend doing a
git commit../vendor/bin/rector process --dry-run --clear-cache
-
When you're ready, run the command.
./vendor/bin/rector process --clear-cache
-
Make sure to add the attribute strategies to your
config/scribe.php:'strategies' => [ 'metadata' => [ Strategies\Metadata\GetFromDocBlocks::class, + Strategies\Metadata\GetFromMetadataAttributes::class, ], 'urlParameters' => [ Strategies\UrlParameters\GetFromLaravelAPI::class, Strategies\UrlParameters\GetFromLumenAPI::class, Strategies\UrlParameters\GetFromUrlParamTag::class, + Strategies\UrlParameters\GetFromUrlParamAttribute::class, ], 'queryParameters' => [ Strategies\QueryParameters\GetFromFormRequest::class, Strategies\QueryParameters\GetFromInlineValidator::class, Strategies\QueryParameters\GetFromQueryParamTag::class, + Strategies\QueryParameters\GetFromQueryParamAttribute::class, ], 'headers' => [ Strategies\Headers\GetFromRouteRules::class, Strategies\Headers\GetFromHeaderTag::class, + Strategies\Headers\GetFromHeaderAttribute::class, ], 'bodyParameters' => [ Strategies\BodyParameters\GetFromFormRequest::class, Strategies\BodyParameters\GetFromInlineValidator::class, Strategies\BodyParameters\GetFromBodyParamTag::class, + Strategies\BodyParameters\GetFromBodyParamAttribute::class, ], 'responses' => [ Strategies\Responses\UseTransformerTags::class, Strategies\Responses\UseResponseTag::class, Strategies\Responses\UseResponseFileTag::class, Strategies\Responses\UseApiResourceTags::class, + Strategies\Responses\UseResponseAttributes::class, Strategies\Responses\ResponseCalls::class, ], 'responseFields' => [ Strategies\ResponseFields\GetFromResponseFieldTag::class, + Strategies\ResponseFields\GetFromResponseFieldAttribute::class, ], ],
All done! You can delete the rector.php file and run composer remove knuckleswtf/scribe-tags2attributes.