Download the PHP package coedevtech/fixit without Composer

On this page you can find all versions of the php package coedevtech/fixit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package fixit

πŸ› οΈ fixIt – Laravel Error Logging & Notification Package

fixIt is a Laravel package that captures and logs all exceptions into a database table β€” with optional encryption, email or Slack alerts, and a powerful CLI interface. Designed to give you full visibility into unhandled errors, without clutter or guesswork.


πŸš€ Features


🧩 Requirements

Dependency Version
PHP ^8.1, ^8.2, or ^8.3
Laravel ^10.x, ^11.x, or ^12.x

πŸ“¦ Installation

Then publish and install:

During installation, you’ll be prompted to enable encryption (optional). If enabled, a FIXIT_ENCRYPTION_KEY will be added to your .env file.


βš™οΈ Configuration

Publish the configuration file:

To check for missing config keys later, run:

To verify and auto-patch missing .env keys:

To automatically append missing keys using short [] array syntax:

For JSON output (CI pipelines):


πŸ” Manual Encryption / Decryption

fixIt provides two static methods via its facade to manually encrypt or decrypt data:

Encrypt data

This encrypts any string or array using AES-256-CBC with a secure IV and stores it base64-encoded.

Decrypt data

This will return the original value (array or string), decrypted securely.


πŸ—ƒοΈ Database Table

Includes fields like:

Table name is not configurable.

βš’οΈ Publishing Migrations

To publish and run any new package-provided migrations (e.g. adding new columns):

This ensures that columns like fingerprint, last_seen_at, and occurrences are always present.


πŸ“§ Email Notifications

To receive an email when an error is logged:

  1. Set send_on_error to true
  2. Set the notifications.email in the config file
  3. Ensure Laravel mail is properly configured

🧠 If you're using QUEUE_CONNECTION=database or QUEUE_CONNECTION=redis, you must run:

Otherwise, queued emails will not be sent and may block request execution depending on your queue setup.

Configure in .env:

Emails will be sent to all valid addresses if FIXIT_ALLOW_MULTIPLE_EMAILS is true.


🧠 AI Suggestions (Optional)

fixIt supports AI-powered suggestions for fixing logged errors. This is completely optional.

Enable AI-powered suggestions:

If enabled, suggestions are included in:


πŸ§ͺ Running Tests

All tests are written using Pest and cover encryption, logging, config, and notifications.


πŸ–₯️ CLI Usage

View error logs:

Filter errors:

Mark error as fixed:

Sync and patch your config file:

Publish and apply package migrations:


πŸ”Œ Extending Alerts

You can bind your own alert channel by implementing the Fixit\Contracts\FixitAlertInterface.

Example for Slack, Discord, or webhook alerts:

Then bind it in a service provider:


πŸ›‘οΈ Security & Best Practices


πŸ“ Changelog

See Releases for full changelog.


All versions of fixit with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0|^8.1|^8.2|^8.3
illuminate/support Version ^9.0|^10.0|^11.0|^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package coedevtech/fixit contains the following files

Loading the files please wait ....