Download the PHP package helloarman/dumptable without Composer

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

DumpTable

The Laravel Migration Updater package is a development tool designed to streamline the process of updating migration files without losing existing table data. This package is particularly useful for developers who need to modify table columns during development while preserving the integrity of the data already present.

Full Documentation: https://helloarman.github.io/dumptable

Package For

Installation

Goto your laravel Project and Run -

Link storage folder

Explantation

In Laravel, updating a migration typically requires altering the entire table, which can result in the loss of data in other tables. This can be problematic if you have valuable data stored in those tables. This package allows you to update a single migration file for a specific table without affecting data in other tables, ensuring data integrity across your database.

Migrate without hamper any other table - table:dump

With this command, you can update a specific migration file without affecting the data in other tables. Simply ensure that you correctly specify your table name.

add -s or --seed flag for migrate with seed file

With this command, you can migrate data with seeding.

or

Note: Name your seeder file with this convention: ModelNameSeeder.php

add -r or --restore flag for migrate with seed file

This is the magical one. with this you can update migration file without affecting the data in that table. It will store the data on that table as it is and update the migration column to the table only.

or

backup any table into sql file

You can backup any table into a sql file with this command.

restore any table into sql file

This command is linked with the backup command. You can restore that backups table in a sql file with this command.

Fresh and Seed Data

This command seeds data into the specified table, deleting previous data. It is useful for resetting table data during development.

Fresh and Seed Data

This command simplifies the process of updating a migration file in a production environment. Instead of creating a new migration file with the current date, it aligns the new file immediately after the main migration file for the table. This makes it easier to find and manage migration files, keeping the structure well-organized.

Badges

MIT License

MIT License

MIT License

Feedback

As this is the first release, There might be some improvement. If you need any addon or modification then do not hesitate to mention me. Contact me on -

Authors


All versions of dumptable with dependencies

PHP Build Version
Package Version
No informations.
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 helloarman/dumptable contains the following files

Loading the files please wait ...