Download the PHP
package dcblogdev/laravel-db-sync without Composer
On this page you can find all versions of the php package
dcblogdev/laravel-db-sync. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
Vendor dcblogdev Package laravel-db-sync Short Description Sync database down. License
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.
There is a Discord community. https://discord.gg/VYau8hgwrm For quick help, ask questions in the appropriate channel.
Laravel DB Sync
Introduction
Sync remote database to a local database
A word of warning you should only sync a remote database into a local database if you have permission to do so within your organisation's policies. I'm syncing during early phases of development where the data is largely test data and not actual customer data.
Connection can be made over SSH or using a remote MySQL connection.
Install
Install the package.
Config
You can publish the config file with:
.env
Set the remote database credentials in your .env file
When using SSH Add:
For only MySQL remote connections:
Set a comma seperate list of tables NOT to export in REMOTE_DATABASE_IGNORE_TABLES
To generate a SQL with a custom file name REMOTE_DEFAULT_FILE_NAME
To specify a different local database connection:
Set the mysql command path:
For only mysqldump:
Usage
To export a remote database to OVERRIDE your local database by running:
Provide a filename for export on the fly by passing the option --filename, remember to provide .sql
Run the command without attempting to export:
Aliases
There are shortcuts that can be used:
-T = will use --testF = will use --filename
Alternative name
When connecting to a none production database, say a staging database you can choose to use this alternative name:
db:remote-sync may be used instead of db:production-sync
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 dcblogdev/laravel-db-sync contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.