Download the PHP package oobook/snapshot without Composer

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

Eloquent Snapshot

Latest Version on Packagist Total Downloads GitHub Actions

This package will create easily the snapshots of your eloquent models into another eloquent model. Besides, it retains the relationships as attribute on your projected models.

Installation

You can install the package via composer:

Publish migrations

Create the snapshot migrations file under database/migrations/ folder using artisan

Publish config

If you would like to to change snapshot table name, create the snapshot config file under config/ folder using artisan

Usage

The HasSnapshot trait allows you to create point-in-time copies (snapshots) of your Eloquent models while maintaining relationships. It provides both snapshot and sync capabilities for attributes and relationships.

Basic Setup

Configuration Options

Snapshot vs Sync

The trait provides two ways to handle attributes and relationships:

  1. Snapshot Mode (snapshot_attributes, snapshot_relationships)

    • Creates a point-in-time copy of the data
    • Values remain unchanged even if the source model is updated
    • Useful for historical records or audit trails
  2. Sync Mode (synced_attributes, synced_relationships)
    • Maintains a live connection to the source model
    • Values automatically update when the source model changes
    • Useful for maintaining current references

Available Relationships

The snapshot model automatically provides these relationships:

Example Usage

Key Features

Important Notes

  1. The source model must be specified using $snapshotSourceModel
  2. Configuration is optional - by default, all attributes and relationships will be snapshotted (relationships if only you use ManageEloquent Trait on source model)
  3. Synced relationships maintain live connections and may impact performance with large datasets
  4. Snapshotted relationships store a copy of the data at creation time
  5. Oobook\Database\Eloquent\Concerns\ManageEloquent Trait is offered to be used on all related models to snapshot mode

Best Practices

Testing

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.


All versions of snapshot with dependencies

PHP Build Version
Package Version
Requires oobook/manage-eloquent Version ^1.0
php Version >=8.1
spatie/laravel-package-tools Version ^1.16
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 oobook/snapshot contains the following files

Loading the files please wait ....