Parse and validate AT Protocol Lexicons with DTO generation for Laravel
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add publishable lexicon JSON files to service provider

+5
+5
src/SchemaServiceProvider.php
··· 262 262 __DIR__.'/../stubs' => base_path('stubs/schema'), 263 263 ], 'schema-stubs'); 264 264 265 + // Publish lexicon JSON files 266 + $this->publishes([ 267 + __DIR__.'/../resources/lexicons' => resource_path('lexicons'), 268 + ], 'atp-lexicons'); 269 + 265 270 // Register commands 266 271 $this->commands([ 267 272 Console\GenerateCommand::class,