Download the PHP package swissup/core without Composer

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

Core

Contents

  1. Installation
  2. Swissup Installer Usage
  3. Swissup Upgrade Class
  4. Popup Message Manager

Installation

Swissup Installer Usage

Swissup installer is a class that collects Swissup Upgrades from all module dependencies and run them, if needed.

Lets see the example of how the Argento theme installer is working:

What does this code do?

  1. Create Swissup\Core\Model\Module object.
  2. Load module info for Swissup_ArgentoDefault module from composer.json file.
  3. Set the store to use (All Stores).
  4. Run installer:
    1. Search for Swissup\Upgrade classes for all depends of Swissup_ArgentoDefault module.
    2. Run getOperations and up command for each of the found upgrade class.
    3. Run getOperations and up command of Swissup_ArgentoDefault upgrade class.

Swissup Upgrade Class

When module or theme needs to run some extra logic for specified store views, it's very handy to use Swissup\Upgrade class, which allows to create and automatically backup various content types and configuration.

Why not to use Magento DataUpgrade?

  • It does not allow to run upgrade multiple times (reinstall)
  • It does not have built-in methods to change store configuration
  • It does not support content backups

Swissup upgrades — are migrations, located at <module_dir>/Upgrades directory. Upgrade class must implement Swissup\Core\Api\Data\ModuleUpgradeInterface.

Upgrade examples:

Upgrade naming conventions

Class example:

Supported Commands

Key/ClassName Description
Configuration Update store configuration
CmsBlock Create/backup cms blocks
CmsPage Create/backup cms pages
Easyslide Create slider if it does not exists
ProductAttribute Create attribute if it does not exists
Easybanner Create placeholders and banners
Products Create featured, new, special, and any other products

Popup Message Manager

Popup message manager allows to show regular Magento messages with additional information in popup window.

Usage example

Inject \Swissup\Helper\PopupMessageManager component into your controller action and use it instead of built-in \Magento\Framework\Message\Manager:


All versions of core with dependencies

PHP Build Version
Package Version
Requires swissup/module-core Version ^1.12.20
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 swissup/core contains the following files

Loading the files please wait ....