Download the PHP package rembon/laravel-auditor without Composer

On this page you can find all versions of the php package rembon/laravel-auditor. 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 laravel-auditor

Laravel Auditor

The Laravel Auditing package is a comprehensive auditing solution for Laravel applications. It provides a way to track changes made to your models, enabling you to maintain a detailed record of data modifications

What is Laravel Auditor

The Laravel Auditing package is designed to seamlessly integrate with your Laravel application, offering a robust and flexible solution for auditing your Eloquent models. It records every change made to your models, storing the old and new values of attributes, the user responsible for the changes, and timestamps. This allows you to maintain a detailed audit trail and ensures data integrity and accountability.

The package is highly customizable, enabling you to define which models and attributes should be audited, specify the storage location for audit logs, and configure how audits are queried and displayed. Additionally, it supports broadcasting audit events, which can be useful for triggering real-time notifications or other actions in response to data changes.

By using Laravel Auditing, you can enhance the transparency and reliability of your application, making it easier to debug issues, understand user actions, and maintain compliance with regulatory requirements.

Key Features

When to use Laravel Auditor ?

How to Install

Step 1: Install the Package via Composer

Run the following command in your terminal to install the package:

Step 2: Register the Service Provider

Once the package is successfully installed, you need to register the service provider and publish the assets. Add the service provider to the providers array in config/app.php:

Use these library on top of your Event Service Provider Files app/Providers/EventServiceProvider.php:

Then replace these code into app/Providers/EventServiceProvider.php

Step 3: Publish the Configuration Files

Run the following Artisan commands to publish the package configuration:

Step 4: Running the Migration Files

then run the migration:

if you want to migrate the specific migration, run migration below:

and

Step 5: Optional Commands

Lastly, run the following optional commands:

if you are using uuid, just check these file ..._create_audits_table.php below:

How to Use ?

Simple, Just put our Auditable Traits into your models

Check the view on: /auditor

Credits


All versions of laravel-auditor with dependencies

PHP Build Version
Package Version
Requires yajra/laravel-datatables-oracle Version ^10.3.1
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 rembon/laravel-auditor contains the following files

Loading the files please wait ....