Download the PHP package zenoware/laravel-sql-dump-validator without Composer

On this page you can find all versions of the php package zenoware/laravel-sql-dump-validator. 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-sql-dump-validator

Laravel SQL Dump Validator

PHPUnit

This package provides a Laravel command and a service to validate SQL dump files for corruption. It uses the gunzip -t command to test the integrity of .sql.gz files.

Installation

Use composer to install the package:

Requirements

The package requires the gunzip command to be installed on your system. The command is used to test the integrity of .sql.gz files.

Usage

Command

You can use the provided command to validate SQL dump files. The command accepts a path and an optional depth parameter.

Validating SQL dump files in the storage/app/sqldumps directory:

Validating SQL dump files in the storage/app/sqldumps directory with a maximum depth of 3:

The path argument is the directory where your SQL dump files are located. The --depth option is the maximum directory depth for the file search.

The command will print the validation results to the console. If a file is corrupted, it will print an error message with the file path and the error details.

On Routes and Jobs

Since the command uses SqlDumpValidatorService under the hood, you can also listen to events to handle the validation results by just running the command from within a job or a route.

Service

You can also use the SqlDumpValidatorService directly in your code. The service accepts a path, a depth, and a callback function.

The callback function is called for each file processed. It receives a SqlDumpFileMetadata object and an array of errors. If the file is OK, the errors array is empty.

Service Provider

The package includes a service provider that registers the SqlDumpValidatorService and the IFileAdapter interface with the Laravel service container.

If you want to use a different file adapter, you can bind your own implementation to the IFileAdapter interface in your own service provider.

Listening to Events

The service used by the command fires an event for each file processed. You can listen/subscribe to events to handle the validation results.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT


All versions of laravel-sql-dump-validator with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^9.0 || ^10.0
symfony/process Version ^6.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 zenoware/laravel-sql-dump-validator contains the following files

Loading the files please wait ....