luminfire / laravel-fmerrorhelper
This package is abandoned and no longer maintained.
The author suggests using the brilliantpackages/laravel-fmerrorhelper package instead.
A package to convert FileMaker Pro error codes to standard HTTP status codes and messages.
1.4.0
2023-02-27 18:36 UTC
Requires
- illuminate/support: ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0
Requires (Dev)
- nunomaduro/collision: ^3 || ^4 || ^5 || ^6.0 || ^7.0
- orchestra/testbench: ~3.8.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0
- phpunit/phpunit: ^8 || ^9 || ^10
README
This is a service provider for Laravel/Lumen to convert FileMaker Pro error codes to standard HTTP status codes and messages.
Installation
Run composer require brilliantpackages/laravel-fmerrorhelper
.
Lumen
Add this line to bootstrap/app.php
to register the service provider:
$app->register(BrilliantPackages\LaravelFmErrorHelper\LaravelFmErrorHelperServiceProvider::class);
Usage
This package should auto-register itself and the FMError
facade for use.
Method 1: Use the facade:
FMError::getErrorCode($fmCode, $fallback);
Method 2:
Include the namespace at the top of the file:
use BrilliantPackages\LaravelFmErrorHelper\Helper as FMError; # Use the getErrorCode/getErrorMessage function as needed: $code = FMError::getErrorCode($fmCode, $fallback); $message = FMError::getErrorMessage($fmCode, $fallback);