pepperfm / api-responder-for-laravel
Easy api responder template using via DI
Installs: 1 028
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^7.9
- guzzlehttp/psr7: ^2.6
- illuminate/database: >=10.0
- illuminate/http: >=10.0
- illuminate/support: >=10.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.59
- laravel/pint: ^1.16
- orchestra/testbench: ^8.22
- pestphp/pest: ^2.32
- pestphp/pest-plugin-laravel: ^2.2
- phpunit/phpunit: ^10.0
- spatie/laravel-ray: ^1.37
Conflicts
- laravel/framework: <10.20.0
- dev-master
- 2.x-dev
- 2.6.1
- 2.6.0
- 2.5.9
- 2.5.8
- 2.5.7
- 2.5.6
- 2.5.5
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.9
- 2.4.8
- 2.4.7
- 2.4.6
- 2.4.5
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.5
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2025-03-24 23:12:12 UTC
README
A simple api response template using via DI
Tip
Full Package Description: Helpful advice for doing things better or more easily.
Installation
You can install the package via composer:
composer require pepperfm/api-responder-for-laravel
Usage
Simply using by laravel DI features.
In use section:
use Pepperfm\ApiBaseResponder\Contracts\ResponseContract;
Then any options you like:
public function __construct(public ResponseContract $json) { } public function index(Request $request) { $users = User::query()->whereIn('id', $request->input('ids'))->get(); return $this->json->response($users); }
for pagination
/* * Generate response.data.meta.pagination from first argument of paginated() method */ public function index(Request $request) { $users = User::query()->whereIn('id', $request->input('ids'))->paginate(); return $this->json->paginated($users); }
with some data mapping
public function index(Request $request) { $users = User::query()->whereIn('id', $request->input('ids'))->paginate(); $dtoCollection = $users->getCollection()->mapInto(UserDto::class); return $this->json->paginated($dtoCollection->toArray(), $users); }
or
public function index(Request $request) { $users = User::query()->whereIn('id', $request->input('ids'))->paginate(); $dtoCollection = $users->getCollection()->mapInto(UserDto::class); return $this->json->paginated($dtoCollection->toArray(), $users); } public function index(Request $request, ResponseContract $json) { return $json->response($users); } public function index(Request $request) { return resolve(ResponseContract::class)->response($users); }
Or would you prefer facades?
return \ApiBaseResponder::response($users); return BaseResponse::response($users);
Paginated data in response
The helper-function paginate
accepts one argument of LengthAwarePaginator
type in backend and returns object of format:
export interface IPaginatedResponse<T> { current_page: number per_page: number last_page: number data: T[] from: number to: number total: number prev_page_url?: any next_page_url: string links: IPaginatedResponseLinks[] } export interface IPaginatedResponseLinks { url?: any label: string active: boolean }
Flexible data key
The package recognizes which method it was used from, and, according to REST, if you return one record from the show or edit methods, then the response will be in the
response.data.entity
You can customize methods that should return this format in config file, as well any data-key you like
It's also possible to set any response data-key to any method you need, just add attribute under controller's method ResponseDataKey
to set response.data.entity
key, or pass any string as parameter:
#[ResponseDataKey] public function attributeWithoutParam(): JsonResponse { return $this->json->response($this->user); // response.data.entity } #[ResponseDataKey('random_key')] public function attributeWithParam(): JsonResponse { return $this->json->response($this->user); // response.data.random_key }
Check the configuration file to customize response wrapping as you prefer
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email Damon3453@yandex.ru instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.