Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 16, 2024 via composer

facade/flare-client-php 1.10.0

Send PHP errors to Flare
Package summary
Share
0
issues
1
license
25
MIT
Package created
30 Aug 2019
Version published
9 Aug 2022
Maintainers
1
Total deps
25
Direct deps
5
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
25 Packages, Including:
carbonphp/carbon-doctrine-types@3.2.0
doctrine/inflector@2.0.10
facade/flare-client-php@1.10.0
facade/ignition-contracts@1.0.2
illuminate/collections@v8.83.27
illuminate/contracts@v8.83.27
illuminate/macroable@v8.83.27
illuminate/pipeline@v8.83.27
illuminate/support@v8.83.27
nesbot/carbon@2.72.3
psr/clock@1.0.0
psr/container@1.1.2
psr/simple-cache@1.0.1
symfony/deprecation-contracts@v3.5.0
symfony/http-foundation@v5.4.39
symfony/mime@v5.4.39
symfony/polyfill-intl-idn@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/translation@v6.4.7
symfony/translation-contracts@v3.5.0
symfony/var-dumper@v5.4.39
voku/portable-ascii@1.6.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

5
All Dependencies CSV
β“˜ This is a list of facade/flare-client-php 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
facade/ignition-contracts1.0.27.5 kBMIT
prod
illuminate/pipelinev8.83.27-MIT
prod
symfony/http-foundationv5.4.39-MIT
prod
symfony/mimev5.4.39-MIT
prod dev
symfony/var-dumperv5.4.39-MIT
prod

Visualizations

Frequently Asked Questions

What does facade/flare-client-php do?

The facade/flare-client-php is a popular composer package that allows PHP developers to send PHP errors directly to Flare. This efficient tool is instrumental in keeping track of and managing PHP errors for debugging and optimization purposes. As an added advantage, the user-friendly interface of Flare app makes error handling much more manageable.

How do you use facade/flare-client-php?

To utilize the facade/flare-client-php package, you have to follow a few easy steps.

First, you need to include the package in your project. You can do this by running the following command within your command line or terminal:

composer require facade/flare-client-php

Next, within your code, you should initialize the package and report any exceptions or errors that you'd like to track. This might look something like:

$flareClient = Facade\FlareClient\Flare::make(your-api-key);
try {
   // ... your code 
} catch (Exception $exception) {
   $flareClient->report($exception);
}

Remember to replace 'your-api-key' with your actual Flare project API key. This way, any exceptions generated in your code within the try-catch block will be sent to Flare for you to analyze.

Where are the facade/flare-client-php docs?

The well-detailed documentation for the facade/flare-client-php package can be accessed at the Flare's official website: https://flareapp.io/docs/general/projects. This provides a comprehensive guide on how to make the most of this package, manage your projects, and troubleshoot any problems you could run into.