php-panel / ladmin-ext-api-tester
Api tester for laravel
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 38
Language:Blade
pkg:composer/php-panel/ladmin-ext-api-tester
Requires
- php: >=8.2
- php-panel/laravel-admin: ^3.0
Requires (Dev)
- laravel/laravel: ~12.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-11-20 16:01:28 UTC
README
Screenshot
Installation
$ composer require php-panel/ladmin-ext-api-tester -vvv
$ php artisan vendor:publish --tag=api-tester
Then last run flowing command to import menu and permission:
$ php artisan admin:import api-tester
Finally open http://localhost/admin/api-tester.
Configuration
api-tester supports 3 configuration, open config/admin.php find extensions:
'extensions' => [ 'api-tester' => [ // route prefix for APIs 'prefix' => 'api', // auth guard for api 'guard' => 'api', // If you are not using the default user model as the authentication model, set it up 'user_retriever' => function ($id) { return \App\User::find($id); }, ] ]
License
Licensed under The Apacle 2.0 License.
