Download the PHP package alaa/magento2-store-config without Composer

On this page you can find all versions of the php package alaa/magento2-store-config. 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 magento2-store-config

Magento Store Configurations

Installation

How it works

Dumping the data

you would first run the following command:

php -f bin/magento store-config:dump

The above command will dump the data in the core_config_data table to the config files. The data will be broken into the following sections:

Sensitive Data will not be dumped as setting sensitive data should not be done via version control - click here to find out more about sensitive configurations.

The command php -f bin/magento store-config:dump will dump the data initially so development can start from that point. Then configurations can be added as needed and thus these configurations can be shared among the team to keep the same configuration across local environments. The breakdown into development and production modes will help keep the configurations separate in case configurations in production vary from the development environment.

You have to be in production mode to generate configs for the production, however you can create them manually to app/etc/store-config/production.

Sample configuration file: app/etc/store-config/developer/default/default.php

The configurations for production mode will sit inside app/etc/store-config/production.

production configurations need to be manually added if you are in developer mode.

Checking the data

Once more configurations are added to the files, they can be checked by the following command:

php -f bin/magento store-config:check

The above will check the files for any missing arguments which are mainly the path and the value.

Any sensitive data will be flagged out and will advise to remove them from the configuration files.

Once check is done, add these files to git

Running the configuration

php -f bin/magento store-config:configure

The above command will write the configurations from the files to the core_config_data table.

The configuration will be written based on the deploy mode.

The above command is safe to run as many times.

The Recurring Script

The recurring script will write the configurations to the core_config_data table.

The configurations are deploy mode based.

Configurations

The module can be configured from the admin:

Contribution

Feel free to raise issues and contribute.

License

MIT


All versions of magento2-store-config with dependencies

PHP Build Version
Package Version
Requires php Version ~7.1.3||~7.2.0
magento/framework Version 101.0.*||102.0.*
magento/module-config Version 101.0.*||~101.1.0
magento/module-store Version 100.2.*||101.0.*
symfony/console Version ~2.3||~4.1.0
zendframework/zend-code Version ~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 alaa/magento2-store-config contains the following files

Loading the files please wait ....