diff --git a/README.md b/README.md index 019ff67..19a54ec 100644 --- a/README.md +++ b/README.md @@ -1,826 +1,141 @@ -Docker images for Oro and Marello development stacks +Docker images and stacks for Oro and Marello development === +This project aims at building your Docker stack for [OroCommerce](https://oroinc.com/b2b-ecommerce/), [OroCRM](https://oroinc.com/orocrm/), [OroPlatform](https://oroinc.com/oroplatform/) and [Marello](https://www.marello.com/) development. + +> ⚠️ Nota: Those stacks are not suited for production hosting + +* [Installation](#installation) * [Usage](#usage) * [Tags](#tags) -Usage +Installation --- -### CLI images - -```yaml -services: - sh: - image: kiboko/php:7.2-cli-blackfire-orocommerce-ee-3.1-postgresql - user: docker:docker - volumes: - - ./:/var/www/html - restart: "no" - - sh-xdebug: - image: kiboko/php:7.2-cli-xdebug-orocommerce-ee-3.1-postgresql - user: docker:docker - volumes: - - ./:/var/www/html - restart: "no" - - blackfire: - image: blackfire/blackfire - environment: - - BLACKFIRE_SERVER_ID - - BLACKFIRE_SERVER_TOKEN -``` +### Installing system-wide the `kloud` command -### FPM images - -```yaml -services: - fpm: - image: kiboko/php:7.2-fpm-blackfire-orocommerce-ee-3.1-postgresql - user: docker:docker - volumes: - - ./:/var/www/html - restart: "no" - - fpm-xdebug: - image: kiboko/php:7.2-fpm-xdebug-orocommerce-ee-3.1-postgresql - user: docker:docker - volumes: - - ./:/var/www/html - restart: "no" - - blackfire: - image: blackfire/blackfire - environment: - - BLACKFIRE_SERVER_ID - - BLACKFIRE_SERVER_TOKEN -``` +While installing system-wide, you will need administrator privilleges to install the command inside `/usr/local/bin/` directory. -### MacOS volumes optimisations - -In order to optimize the IO performances in a Docker for mac stack, we recommend using those volumes configurations: - -```yaml -volumes: - - # for CLI images only - composer: - driver: local - driver_opts: - type: tmpfs - device: tmpfs - o: "size=2048m,uid=1000,gid=1000" - - # for CLI and FPM images - assets: - driver: local - driver_opts: - type: tmpfs - device: tmpfs - o: "size=2048m,uid=1000,gid=1000" - cache: - driver: local - driver_opts: - type: tmpfs - device: tmpfs - o: "size=2048m,uid=1000,gid=1000" +``` +sudo curl -o /usr/local/bin/kloud https://github.com/kiboko-labs/docker-images/releases/download/1.0.2/kloud.phar +sudo curl -o /usr/local/bin/kloud.pubkey https://github.com/kiboko-labs/docker-images/releases/download/1.0.2/kloud.phar.pubkey +sudo chmod +x /usr/local/bin/kloud ``` -In the service configuration, you will also need to mount those volumes with the `delegated` option, such as: - -```yaml -services: - sh: - image: kiboko/php:7.2-cli-orocommerce-ee-3.1-postgresql - user: docker:docker - volumes: - - ./:/var/www/html - - cache:/var/www/html/var/cache:delegated - - assets:/var/www/html/public/bundles:delegated - restart: "no" - - composer: - extends: - service: sh - volumes: - - composer:/opt/docker/.composer/:delegated - environment: - COMPOSER_AUTH: '{"github-oauth":{"github.com": "${COMPOSER_GITHUB_TOKEN}"}}' - entrypoint: [ "composer" ] - restart: "no" +### Installing the Phar package in your project + +While installing in your project, no administrator privilege is required, the phar package will be available in the `bin/` directory. + +``` +curl -o bin/kloud.phar https://github.com/kiboko-labs/docker-images/releases/download/1.0.2/kloud.phar +curl -o bin/kloud.phar.pubkey https://github.com/kiboko-labs/docker-images/releases/download/1.0.2/kloud.phar.pubkey +chmod +x bin/kloud.phar ``` -Oro pre-built Docker Compose stacks +We also recommend to add both files to your `.gitignore` file. + +### If you want to use the pre-packaged docker image + +If you do not want to install the command on your machine, a Docker image is ready for one-shot usages and can be executed this way: + +`docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock -v $HOME/.docker:/opt/docker/.docker -v $PWD:/app kiboko/kloud ` + +Usage --- -* OroPlatform [[CE 3.1](compose/oroplatform/ce/3.1/)] -* OroCommerce [[EE 3.1](compose/orocommerce/ee/3.1/)] +### Initialize your stack + +In a new project, after cloning the original application repository, you can initialize the Docker stack configuration you will need. +You can invoke the following command that will guess what you need and a wizard will ask you a few questions about your preferences: + +`kloud stack:init` + +### Update your stack + +In an existing project, you can upgrade the docker stack configuration. automagically. +You can invoke the following command that will guess what services needs to be updated and in case of differences, a wizard will ask you what you wish to keep or delete: + +`kloud stack:update` + +### Build the required images + +If you need to build the images you need in a stack, you can execute the following command: + +`kloud image:build` + +### Test the required images + +If you need to test if the images you are using are following every constraint you would expect: +`kloud image:test` -Tags +Supported versions and flavours --- -* OroPlatform [[CE 3.1](#oroplatform-community-edition---version-31), [CE 4.1](#oroplatform-community-edition---version-41), [EE 3.1](#oroplatform-enterprise-edition---version-31), [EE 4.1](#oroplatform-enterprise-edition---version-41)] -* OroCommerce [[CE 3.1](#orocommerce-community-edition---version-31), [CE 4.1](#orocommerce-community-edition---version-41), [EE 3.1](#orocommerce-enterprise-edition---version-31), [EE 4.1](#orocommerce-enterprise-edition---version-41)] -* OroCRM [[CE 3.1](#orocrm-community-edition---version-31), [EE 3.1](#orocrm-enterprise-edition---version-31), [CE 4.1](#orocrm-community-edition---version-41), [EE 4.1](#orocrm-enterprise-edition---version-41)] -* Marello [[CE 2.0](#marello-community-edition---version-20), [CE 2.1](#marello-community-edition---version-21), [CE 2.2](#marello-community-edition---version-22), [EE 2.0](#marello-enterprise-edition---version-20), [EE 2.1](#marello-enterprise-edition---version-21), [EE 2.2](#marello-enterprise-edition---version-22)] - -| Application | Version | PHP 7.1 + PG | PHP 7.2 + PG | PHP 7.3 + PG | PHP 7.4 + PG | PHP 8.0 + PG | PHP 7.1 + My | PHP 7.2 + My | PHP 7.3 + My | PHP 7.4 + My | PHP 8.0 + My | -| -------------- | ------- | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ | ------------ | -| OroPlatform CE | ^2.6.0 | discontinued | ❌ | ❌ | ❌️ | ❌ | discontinued | ❌ | ❌ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| OroPlatform EE | ^2.6.0 | discontinued | ❌ | ❌ | ❌️ | ❌ | discontinued | ❌ | ❌ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| OroCRM CE | ^2.6.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| OroCRM EE | ^2.6.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| OroCommerce CE | ^1.6.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| OroCommerce EE | ^1.6.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^3.1.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^4.1.0 | ❌ | ❌ | ⚠️ experim. | ⚠️ experim. | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| Marello CE | ^1.5.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^2.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^2.1 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^2.2 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | -| Marello EE | ^1.3.0 | discontinued | ❌ | ❌️ | ❌️ | ❌ | discontinued | ❌ | ❌️ | ❌️ | ❌ | -| | ^2.0 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^2.1 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^2.2 | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | ✅ | ✅ | ⚠️ experim. | ⚠️ experim. | ❌ | -| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ❌ | ❌ | ❌ | ✅️ | ✅️ | ❌ | - -### OroPlatform Community Edition - Version 2.6 - -This version was discontinued - -### OroPlatform Community Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-oroplatform-ce-3.1-postgresql` or `7.1-cli-oroplatform-ce-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-oroplatform-ce-3.1-postgresql` or `7.1-cli-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-oroplatform-ce-3.1-postgresql` or `7.1-cli-xdebug-oroplatform-ce-3.1-mysql` - * FPM - * standard `7.1-fpm-oroplatform-ce-3.1-postgresql` or `7.1-fpm-oroplatform-ce-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-oroplatform-ce-3.1-postgresql` or `7.1-fpm-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-oroplatform-ce-3.1-postgresql` or `7.1-fpm-xdebug-oroplatform-ce-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-oroplatform-ce-3.1-postgresql` or `7.2-cli-oroplatform-ce-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-oroplatform-ce-3.1-postgresql` or `7.2-cli-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-oroplatform-ce-3.1-postgresql` or `7.2-cli-xdebug-oroplatform-ce-3.1-mysql` - * FPM - * standard `7.2-fpm-oroplatform-ce-3.1-postgresql` or `7.2-fpm-oroplatform-ce-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-oroplatform-ce-3.1-postgresql` or `7.2-fpm-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-oroplatform-ce-3.1-postgresql` or `7.2-fpm-xdebug-oroplatform-ce-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-oroplatform-ce-3.1-postgresql` or `7.3-cli-oroplatform-ce-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-oroplatform-ce-3.1-postgresql` or `7.3-cli-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-oroplatform-ce-3.1-postgresql` or `7.3-cli-xdebug-oroplatform-ce-3.1-mysql` - * FPM - * standard `7.3-fpm-oroplatform-ce-3.1-postgresql` or `7.3-fpm-oroplatform-ce-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-oroplatform-ce-3.1-postgresql` or `7.3-fpm-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-oroplatform-ce-3.1-postgresql` or `7.3-fpm-xdebug-oroplatform-ce-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-oroplatform-ce-3.1-postgresql` or `7.4-cli-oroplatform-ce-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-oroplatform-ce-3.1-postgresql` or `7.4-cli-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-oroplatform-ce-3.1-postgresql` or `7.4-cli-xdebug-oroplatform-ce-3.1-mysql` - * FPM - * standard `7.4-fpm-oroplatform-ce-3.1-postgresql` or `7.4-fpm-oroplatform-ce-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-oroplatform-ce-3.1-postgresql` or `7.4-fpm-blackfire-oroplatform-ce-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-oroplatform-ce-3.1-postgresql` or `7.4-fpm-xdebug-oroplatform-ce-3.1-mysql` - -### OroPlatform Community Edition - Version 4.1 - -* PHP 7.3 - * CLI - * standard `7.3-cli-oroplatform-ce-4.1-postgresql` or `7.3-cli-oroplatform-ce-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-oroplatform-ce-4.1-postgresql` or `7.3-cli-blackfire-oroplatform-ce-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-oroplatform-ce-4.1-postgresql` or `7.3-cli-xdebug-oroplatform-ce-4.1-mysql` - * FPM - * standard `7.3-fpm-oroplatform-ce-4.1-postgresql` or `7.3-fpm-oroplatform-ce-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-oroplatform-ce-4.1-postgresql` or `7.3-fpm-blackfire-oroplatform-ce-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-oroplatform-ce-4.1-postgresql` or `7.3-fpm-xdebug-oroplatform-ce-4.1-mysql` - -* PHP 7.4 - * CLI - * standard `7.4-cli-oroplatform-ce-4.1-postgresql` or `7.4-cli-oroplatform-ce-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-oroplatform-ce-4.1-postgresql` or `7.4-cli-blackfire-oroplatform-ce-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-oroplatform-ce-4.1-postgresql` or `7.4-cli-xdebug-oroplatform-ce-4.1-mysql` - * FPM - * standard `7.4-fpm-oroplatform-ce-4.1-postgresql` or `7.4-fpm-oroplatform-ce-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-oroplatform-ce-4.1-postgresql` or `7.4-fpm-blackfire-oroplatform-ce-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-oroplatform-ce-4.1-postgresql` or `7.4-fpm-xdebug-oroplatform-ce-4.1-mysql` - -### OroPlatform Enterprise Edition - Version 2.6 - -This version was discontinued - -### OroPlatform Enterprise Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-oroplatform-ee-3.1-postgresql` or `7.1-cli-oroplatform-ee-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-oroplatform-ee-3.1-postgresql` or `7.1-cli-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-oroplatform-ee-3.1-postgresql` or `7.1-cli-xdebug-oroplatform-ee-3.1-mysql` - * FPM - * standard `7.1-fpm-oroplatform-ee-3.1-postgresql` or `7.1-fpm-oroplatform-ee-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-oroplatform-ee-3.1-postgresql` or `7.1-fpm-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-oroplatform-ee-3.1-postgresql` or `7.1-fpm-xdebug-oroplatform-ee-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-oroplatform-ee-3.1-postgresql` or `7.2-cli-oroplatform-ee-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-oroplatform-ee-3.1-postgresql` or `7.2-cli-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-oroplatform-ee-3.1-postgresql` or `7.2-cli-xdebug-oroplatform-ee-3.1-mysql` - * FPM - * standard `7.2-fpm-oroplatform-ee-3.1-postgresql` or `7.2-fpm-oroplatform-ee-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-oroplatform-ee-3.1-postgresql` or `7.2-fpm-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-oroplatform-ee-3.1-postgresql` or `7.2-fpm-xdebug-oroplatform-ee-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-oroplatform-ee-3.1-postgresql` or `7.3-cli-oroplatform-ee-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-oroplatform-ee-3.1-postgresql` or `7.3-cli-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-oroplatform-ee-3.1-postgresql` or `7.3-cli-xdebug-oroplatform-ee-3.1-mysql` - * FPM - * standard `7.3-fpm-oroplatform-ee-3.1-postgresql` or `7.3-fpm-oroplatform-ee-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-oroplatform-ee-3.1-postgresql` or `7.3-fpm-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-oroplatform-ee-3.1-postgresql` or `7.3-fpm-xdebug-oroplatform-ee-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-oroplatform-ee-3.1-postgresql` or `7.4-cli-oroplatform-ee-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-oroplatform-ee-3.1-postgresql` or `7.4-cli-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-oroplatform-ee-3.1-postgresql` or `7.4-cli-xdebug-oroplatform-ee-3.1-mysql` - * FPM - * standard `7.4-fpm-oroplatform-ee-3.1-postgresql` or `7.4-fpm-oroplatform-ee-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-oroplatform-ee-3.1-postgresql` or `7.4-fpm-blackfire-oroplatform-ee-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-oroplatform-ee-3.1-postgresql` or `7.4-fpm-xdebug-oroplatform-ee-3.1-mysql` - -### OroPlatform Enterprise Edition - Version 4.1 - -* PHP 7.3 - * CLI - * standard `7.3-cli-oroplatform-ee-4.1-postgresql` or `7.3-cli-oroplatform-ee-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-oroplatform-ee-4.1-postgresql` or `7.3-cli-blackfire-oroplatform-ee-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-oroplatform-ee-4.1-postgresql` or `7.3-cli-xdebug-oroplatform-ee-4.1-mysql` - * FPM - * standard `7.3-fpm-oroplatform-ee-4.1-postgresql` or `7.3-fpm-oroplatform-ee-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-oroplatform-ee-4.1-postgresql` or `7.3-fpm-blackfire-oroplatform-ee-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-oroplatform-ee-4.1-postgresql` or `7.3-fpm-xdebug-oroplatform-ee-4.1-mysql` - -* PHP 7.4 - * CLI - * standard `7.4-cli-oroplatform-ee-4.1-postgresql` or `7.4-cli-oroplatform-ee-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-oroplatform-ee-4.1-postgresql` or `7.4-cli-blackfire-oroplatform-ee-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-oroplatform-ee-4.1-postgresql` or `7.4-cli-xdebug-oroplatform-ee-4.1-mysql` - * FPM - * standard `7.4-fpm-oroplatform-ee-4.1-postgresql` or `7.4-fpm-oroplatform-ee-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-oroplatform-ee-4.1-postgresql` or `7.4-fpm-blackfire-oroplatform-ee-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-oroplatform-ee-4.1-postgresql` or `7.4-fpm-xdebug-oroplatform-ee-4.1-mysql` - -### OroCommerce Community Edition - Version 1.6 - -This version was discontinued - -### OroCommerce Community Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-orocommerce-ce-3.1-postgresql` or `7.1-cli-orocommerce-ce-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-orocommerce-ce-3.1-postgresql` or `7.1-cli-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-orocommerce-ce-3.1-postgresql` or `7.1-cli-xdebug-orocommerce-ce-3.1-mysql` - * FPM - * standard `7.1-fpm-orocommerce-ce-3.1-postgresql` or `7.1-fpm-orocommerce-ce-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-orocommerce-ce-3.1-postgresql` or `7.1-fpm-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-orocommerce-ce-3.1-postgresql` or `7.1-fpm-xdebug-orocommerce-ce-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-orocommerce-ce-3.1-postgresql` or `7.2-cli-orocommerce-ce-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-orocommerce-ce-3.1-postgresql` or `7.2-cli-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-orocommerce-ce-3.1-postgresql` or `7.2-cli-xdebug-orocommerce-ce-3.1-mysql` - * FPM - * standard `7.2-fpm-orocommerce-ce-3.1-postgresql` or `7.2-fpm-orocommerce-ce-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-orocommerce-ce-3.1-postgresql` or `7.2-fpm-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-orocommerce-ce-3.1-postgresql` or `7.2-fpm-xdebug-orocommerce-ce-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-orocommerce-ce-3.1-postgresql` or `7.3-cli-orocommerce-ce-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocommerce-ce-3.1-postgresql` or `7.3-cli-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocommerce-ce-3.1-postgresql` or `7.3-cli-xdebug-orocommerce-ce-3.1-mysql` - * FPM - * standard `7.3-fpm-orocommerce-ce-3.1-postgresql` or `7.3-fpm-orocommerce-ce-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocommerce-ce-3.1-postgresql` or `7.3-fpm-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocommerce-ce-3.1-postgresql` or `7.3-fpm-xdebug-orocommerce-ce-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-orocommerce-ce-3.1-postgresql` or `7.4-cli-orocommerce-ce-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocommerce-ce-3.1-postgresql` or `7.4-cli-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocommerce-ce-3.1-postgresql` or `7.4-cli-xdebug-orocommerce-ce-3.1-mysql` - * FPM - * standard `7.4-fpm-orocommerce-ce-3.1-postgresql` or `7.4-fpm-orocommerce-ce-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocommerce-ce-3.1-postgresql` or `7.4-fpm-blackfire-orocommerce-ce-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocommerce-ce-3.1-postgresql` or `7.4-fpm-xdebug-orocommerce-ce-3.1-mysql` - -### OroCommerce Community Edition - Version 4.1 - -* PHP 7.3 - * CLI - * standard `7.3-cli-orocommerce-ce-4.1-postgresql` or `7.3-cli-orocommerce-ce-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocommerce-ce-4.1-postgresql` or `7.3-cli-blackfire-orocommerce-ce-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocommerce-ce-4.1-postgresql` or `7.3-cli-xdebug-orocommerce-ce-4.1-mysql` - * FPM - * standard `7.3-fpm-orocommerce-ce-4.1-postgresql` or `7.3-fpm-orocommerce-ce-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocommerce-ce-4.1-postgresql` or `7.3-fpm-blackfire-orocommerce-ce-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocommerce-ce-4.1-postgresql` or `7.3-fpm-xdebug-orocommerce-ce-4.1-mysql` - -* PHP 7.4 - * CLI - * standard `7.4-cli-orocommerce-ce-4.1-postgresql` or `7.4-cli-orocommerce-ce-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocommerce-ce-4.1-postgresql` or `7.4-cli-blackfire-orocommerce-ce-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocommerce-ce-4.1-postgresql` or `7.4-cli-xdebug-orocommerce-ce-4.1-mysql` - * FPM - * standard `7.4-fpm-orocommerce-ce-4.1-postgresql` or `7.4-fpm-orocommerce-ce-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocommerce-ce-4.1-postgresql` or `7.4-fpm-blackfire-orocommerce-ce-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocommerce-ce-4.1-postgresql` or `7.4-fpm-xdebug-orocommerce-ce-4.1-mysql` - -### OroCommerce Enterprise Edition - Version 1.6 - -This version was discontinued - -### OroCommerce Enterprise Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-orocommerce-ee-3.1-postgresql` or `7.1-cli-orocommerce-ee-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-orocommerce-ee-3.1-postgresql` or `7.1-cli-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-orocommerce-ee-3.1-postgresql` or `7.1-cli-xdebug-orocommerce-ee-3.1-mysql` - * FPM - * standard `7.1-fpm-orocommerce-ee-3.1-postgresql` or `7.1-fpm-orocommerce-ee-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-orocommerce-ee-3.1-postgresql` or `7.1-fpm-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-orocommerce-ee-3.1-postgresql` or `7.1-fpm-xdebug-orocommerce-ee-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-orocommerce-ee-3.1-postgresql` or `7.2-cli-orocommerce-ee-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-orocommerce-ee-3.1-postgresql` or `7.2-cli-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-orocommerce-ee-3.1-postgresql` or `7.2-cli-xdebug-orocommerce-ee-3.1-mysql` - * FPM - * standard `7.2-fpm-orocommerce-ee-3.1-postgresql` or `7.2-fpm-orocommerce-ee-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-orocommerce-ee-3.1-postgresql` or `7.2-fpm-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-orocommerce-ee-3.1-postgresql` or `7.2-fpm-xdebug-orocommerce-ee-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-orocommerce-ee-3.1-postgresql` or `7.3-cli-orocommerce-ee-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocommerce-ee-3.1-postgresql` or `7.3-cli-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocommerce-ee-3.1-postgresql` or `7.3-cli-xdebug-orocommerce-ee-3.1-mysql` - * FPM - * standard `7.3-fpm-orocommerce-ee-3.1-postgresql` or `7.3-fpm-orocommerce-ee-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocommerce-ee-3.1-postgresql` or `7.3-fpm-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocommerce-ee-3.1-postgresql` or `7.3-fpm-xdebug-orocommerce-ee-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-orocommerce-ee-3.1-postgresql` or `7.4-cli-orocommerce-ee-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocommerce-ee-3.1-postgresql` or `7.4-cli-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocommerce-ee-3.1-postgresql` or `7.4-cli-xdebug-orocommerce-ee-3.1-mysql` - * FPM - * standard `7.4-fpm-orocommerce-ee-3.1-postgresql` or `7.4-fpm-orocommerce-ee-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocommerce-ee-3.1-postgresql` or `7.4-fpm-blackfire-orocommerce-ee-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocommerce-ee-3.1-postgresql` or `7.4-fpm-xdebug-orocommerce-ee-3.1-mysql` - -### OroCommerce Enterprise Edition - Version 4.1 - -* PHP 7.3 - * CLI - * standard `7.3-cli-orocommerce-ee-4.1-postgresql` or `7.3-cli-orocommerce-ee-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocommerce-ee-4.1-postgresql` or `7.3-cli-blackfire-orocommerce-ee-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocommerce-ee-4.1-postgresql` or `7.3-cli-xdebug-orocommerce-ee-4.1-mysql` - * FPM - * standard `7.3-fpm-orocommerce-ee-4.1-postgresql` or `7.3-fpm-orocommerce-ee-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocommerce-ee-4.1-postgresql` or `7.3-fpm-blackfire-orocommerce-ee-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocommerce-ee-4.1-postgresql` or `7.3-fpm-xdebug-orocommerce-ee-4.1-mysql` - -* PHP 7.4 - * CLI - * standard `7.4-cli-orocommerce-ee-4.1-postgresql` or `7.4-cli-orocommerce-ee-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocommerce-ee-4.1-postgresql` or `7.4-cli-blackfire-orocommerce-ee-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocommerce-ee-4.1-postgresql` or `7.4-cli-xdebug-orocommerce-ee-4.1-mysql` - * FPM - * standard `7.4-fpm-orocommerce-ee-4.1-postgresql` or `7.4-fpm-orocommerce-ee-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocommerce-ee-4.1-postgresql` or `7.4-fpm-blackfire-orocommerce-ee-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocommerce-ee-4.1-postgresql` or `7.4-fpm-xdebug-orocommerce-ee-4.1-mysql` - -### OroCRM Community Edition - Version 2.6 - -This version was discontinued - -### OroCRM Community Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-orocrm-ce-3.1-postgresql` or `7.1-cli-orocrm-ce-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-orocrm-ce-3.1-postgresql` or `7.1-cli-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-orocrm-ce-3.1-postgresql` or `7.1-cli-xdebug-orocrm-ce-3.1-mysql` - * FPM - * standard `7.1-fpm-orocrm-ce-3.1-postgresql` or `7.1-fpm-orocrm-ce-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-orocrm-ce-3.1-postgresql` or `7.1-fpm-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-orocrm-ce-3.1-postgresql` or `7.1-fpm-xdebug-orocrm-ce-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-orocrm-ce-3.1-postgresql` or `7.2-cli-orocrm-ce-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-orocrm-ce-3.1-postgresql` or `7.2-cli-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-orocrm-ce-3.1-postgresql` or `7.2-cli-xdebug-orocrm-ce-3.1-mysql` - * FPM - * standard `7.2-fpm-orocrm-ce-3.1-postgresql` or `7.2-fpm-orocrm-ce-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-orocrm-ce-3.1-postgresql` or `7.2-fpm-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-orocrm-ce-3.1-postgresql` or `7.2-fpm-xdebug-orocrm-ce-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-orocrm-ce-3.1-postgresql` or `7.3-cli-orocrm-ce-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocrm-ce-3.1-postgresql` or `7.3-cli-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocrm-ce-3.1-postgresql` or `7.3-cli-xdebug-orocrm-ce-3.1-mysql` - * FPM - * standard `7.3-fpm-orocrm-ce-3.1-postgresql` or `7.3-fpm-orocrm-ce-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocrm-ce-3.1-postgresql` or `7.3-fpm-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocrm-ce-3.1-postgresql` or `7.3-fpm-xdebug-orocrm-ce-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-orocrm-ce-3.1-postgresql` or `7.4-cli-orocrm-ce-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocrm-ce-3.1-postgresql` or `7.4-cli-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocrm-ce-3.1-postgresql` or `7.4-cli-xdebug-orocrm-ce-3.1-mysql` - * FPM - * standard `7.4-fpm-orocrm-ce-3.1-postgresql` or `7.4-fpm-orocrm-ce-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocrm-ce-3.1-postgresql` or `7.4-fpm-blackfire-orocrm-ce-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocrm-ce-3.1-postgresql` or `7.4-fpm-xdebug-orocrm-ce-3.1-mysql` - -### OroCRM Enterprise Edition - Version 2.6 - -This version was discontinued - -### OroCRM Enterprise Edition - Version 3.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-orocrm-ee-3.1-postgresql` or `7.1-cli-orocrm-ee-3.1-mysql` - * with Blackfire `7.1-cli-blackfire-orocrm-ee-3.1-postgresql` or `7.1-cli-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.1-cli-xdebug-orocrm-ee-3.1-postgresql` or `7.1-cli-xdebug-orocrm-ee-3.1-mysql` - * FPM - * standard `7.1-fpm-orocrm-ee-3.1-postgresql` or `7.1-fpm-orocrm-ee-3.1-mysql` - * with Blackfire `7.1-fpm-blackfire-orocrm-ee-3.1-postgresql` or `7.1-fpm-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.1-fpm-xdebug-orocrm-ee-3.1-postgresql` or `7.1-fpm-xdebug-orocrm-ee-3.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-orocrm-ee-3.1-postgresql` or `7.2-cli-orocrm-ee-3.1-mysql` - * with Blackfire `7.2-cli-blackfire-orocrm-ee-3.1-postgresql` or `7.2-cli-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.2-cli-xdebug-orocrm-ee-3.1-postgresql` or `7.2-cli-xdebug-orocrm-ee-3.1-mysql` - * FPM - * standard `7.2-fpm-orocrm-ee-3.1-postgresql` or `7.2-fpm-orocrm-ee-3.1-mysql` - * with Blackfire `7.2-fpm-blackfire-orocrm-ee-3.1-postgresql` or `7.2-fpm-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.2-fpm-xdebug-orocrm-ee-3.1-postgresql` or `7.2-fpm-xdebug-orocrm-ee-3.1-mysql` - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-orocrm-ee-3.1-postgresql` or `7.3-cli-orocrm-ee-3.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocrm-ee-3.1-postgresql` or `7.3-cli-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocrm-ee-3.1-postgresql` or `7.3-cli-xdebug-orocrm-ee-3.1-mysql` - * FPM - * standard `7.3-fpm-orocrm-ee-3.1-postgresql` or `7.3-fpm-orocrm-ee-3.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocrm-ee-3.1-postgresql` or `7.3-fpm-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocrm-ee-3.1-postgresql` or `7.3-fpm-xdebug-orocrm-ee-3.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-orocrm-ee-3.1-postgresql` or `7.4-cli-orocrm-ee-3.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocrm-ee-3.1-postgresql` or `7.4-cli-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocrm-ee-3.1-postgresql` or `7.4-cli-xdebug-orocrm-ee-3.1-mysql` - * FPM - * standard `7.4-fpm-orocrm-ee-3.1-postgresql` or `7.4-fpm-orocrm-ee-3.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocrm-ee-3.1-postgresql` or `7.4-fpm-blackfire-orocrm-ee-3.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocrm-ee-3.1-postgresql` or `7.4-fpm-xdebug-orocrm-ee-3.1-mysql` - -### OroCRM Community Edition - Version 4.1 - -* PHP 7.3 - * CLI - * standard `7.3-cli-orocrm-ce-4.1-postgresql` or `7.3-cli-orocrm-ce-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocrm-ce-4.1-postgresql` or `7.3-cli-blackfire-orocrm-ce-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocrm-ce-4.1-postgresql` or `7.3-cli-xdebug-orocrm-ce-4.1-mysql` - * FPM - * standard `7.3-fpm-orocrm-ce-4.1-postgresql` or `7.3-fpm-orocrm-ce-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocrm-ce-4.1-postgresql` or `7.3-fpm-blackfire-orocrm-ce-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocrm-ce-4.1-postgresql` or `7.3-fpm-xdebug-orocrm-ce-4.1-mysql` - -* PHP 7.4 - * CLI - * standard `7.4-cli-orocrm-ce-4.1-postgresql` or `7.4-cli-orocrm-ce-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocrm-ce-4.1-postgresql` or `7.4-cli-blackfire-orocrm-ce-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocrm-ce-4.1-postgresql` or `7.4-cli-xdebug-orocrm-ce-4.1-mysql` - * FPM - * standard `7.4-fpm-orocrm-ce-4.1-postgresql` or `7.4-fpm-orocrm-ce-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocrm-ce-4.1-postgresql` or `7.4-fpm-blackfire-orocrm-ce-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocrm-ce-4.1-postgresql` or `7.4-fpm-xdebug-orocrm-ce-4.1-mysql` - -### OroCRM Enterprise Edition - Version 4.1 - -* PHP 7.3 (not supported by Oro) - * CLI - * standard `7.3-cli-orocrm-ee-4.1-postgresql` or `7.3-cli-orocrm-ee-4.1-mysql` - * with Blackfire `7.3-cli-blackfire-orocrm-ee-4.1-postgresql` or `7.3-cli-blackfire-orocrm-ee-4.1-mysql` - * with Xdebug `7.3-cli-xdebug-orocrm-ee-4.1-postgresql` or `7.3-cli-xdebug-orocrm-ee-4.1-mysql` - * FPM - * standard `7.3-fpm-orocrm-ee-4.1-postgresql` or `7.3-fpm-orocrm-ee-4.1-mysql` - * with Blackfire `7.3-fpm-blackfire-orocrm-ee-4.1-postgresql` or `7.3-fpm-blackfire-orocrm-ee-4.1-mysql` - * with Xdebug `7.3-fpm-xdebug-orocrm-ee-4.1-postgresql` or `7.3-fpm-xdebug-orocrm-ee-4.1-mysql` - -* PHP 7.4 (not supported by Oro) - * CLI - * standard `7.4-cli-orocrm-ee-4.1-postgresql` or `7.4-cli-orocrm-ee-4.1-mysql` - * with Blackfire `7.4-cli-blackfire-orocrm-ee-4.1-postgresql` or `7.4-cli-blackfire-orocrm-ee-4.1-mysql` - * with Xdebug `7.4-cli-xdebug-orocrm-ee-4.1-postgresql` or `7.4-cli-xdebug-orocrm-ee-4.1-mysql` - * FPM - * standard `7.4-fpm-orocrm-ee-4.1-postgresql` or `7.4-fpm-orocrm-ee-4.1-mysql` - * with Blackfire `7.4-fpm-blackfire-orocrm-ee-4.1-postgresql` or `7.4-fpm-blackfire-orocrm-ee-4.1-mysql` - * with Xdebug `7.4-fpm-xdebug-orocrm-ee-4.1-postgresql` or `7.4-fpm-xdebug-orocrm-ee-4.1-mysql` - -### Marello Community Edition - Version 1.5 - -This version was discontinued - -### Marello Community Edition - Version 2.0 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ce-2.0-postgresql` or `7.1-cli-marello-ce-2.0-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ce-2.0-postgresql` or `7.1-cli-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ce-2.0-postgresql` or `7.1-cli-xdebug-marello-ce-2.0-mysql` - * FPM - * standard `7.1-fpm-marello-ce-2.0-postgresql` or `7.1-fpm-marello-ce-2.0-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ce-2.0-postgresql` or `7.1-fpm-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ce-2.0-postgresql` or `7.1-fpm-xdebug-marello-ce-2.0-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ce-2.0-postgresql` or `7.2-cli-marello-ce-2.0-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ce-2.0-postgresql` or `7.2-cli-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ce-2.0-postgresql` or `7.2-cli-xdebug-marello-ce-2.0-mysql` - * FPM - * standard `7.2-fpm-marello-ce-2.0-postgresql` or `7.2-fpm-marello-ce-2.0-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ce-2.0-postgresql` or `7.2-fpm-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ce-2.0-postgresql` or `7.2-fpm-xdebug-marello-ce-2.0-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ce-2.0-postgresql` or `7.3-cli-marello-ce-2.0-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ce-2.0-postgresql` or `7.3-cli-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ce-2.0-postgresql` or `7.3-cli-xdebug-marello-ce-2.0-mysql` - * FPM - * standard `7.3-fpm-marello-ce-2.0-postgresql` or `7.3-fpm-marello-ce-2.0-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ce-2.0-postgresql` or `7.3-fpm-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ce-2.0-postgresql` or `7.3-fpm-xdebug-marello-ce-2.0-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ce-2.0-postgresql` or `7.4-cli-marello-ce-2.0-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ce-2.0-postgresql` or `7.4-cli-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ce-2.0-postgresql` or `7.4-cli-xdebug-marello-ce-2.0-mysql` - * FPM - * standard `7.4-fpm-marello-ce-2.0-postgresql` or `7.4-fpm-marello-ce-2.0-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ce-2.0-postgresql` or `7.4-fpm-blackfire-marello-ce-2.0-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ce-2.0-postgresql` or `7.4-fpm-xdebug-marello-ce-2.0-mysql` - -### Marello Community Edition - Version 2.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ce-2.1-postgresql` or `7.1-cli-marello-ce-2.1-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ce-2.1-postgresql` or `7.1-cli-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ce-2.1-postgresql` or `7.1-cli-xdebug-marello-ce-2.1-mysql` - * FPM - * standard `7.1-fpm-marello-ce-2.1-postgresql` or `7.1-fpm-marello-ce-2.1-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ce-2.1-postgresql` or `7.1-fpm-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ce-2.1-postgresql` or `7.1-fpm-xdebug-marello-ce-2.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ce-2.1-postgresql` or `7.2-cli-marello-ce-2.1-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ce-2.1-postgresql` or `7.2-cli-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ce-2.1-postgresql` or `7.2-cli-xdebug-marello-ce-2.1-mysql` - * FPM - * standard `7.2-fpm-marello-ce-2.1-postgresql` or `7.2-fpm-marello-ce-2.1-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ce-2.1-postgresql` or `7.2-fpm-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ce-2.1-postgresql` or `7.2-fpm-xdebug-marello-ce-2.1-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ce-2.1-postgresql` or `7.3-cli-marello-ce-2.1-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ce-2.1-postgresql` or `7.3-cli-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ce-2.1-postgresql` or `7.3-cli-xdebug-marello-ce-2.1-mysql` - * FPM - * standard `7.3-fpm-marello-ce-2.1-postgresql` or `7.3-fpm-marello-ce-2.1-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ce-2.1-postgresql` or `7.3-fpm-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ce-2.1-postgresql` or `7.3-fpm-xdebug-marello-ce-2.1-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ce-2.1-postgresql` or `7.4-cli-marello-ce-2.1-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ce-2.1-postgresql` or `7.4-cli-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ce-2.1-postgresql` or `7.4-cli-xdebug-marello-ce-2.1-mysql` - * FPM - * standard `7.4-fpm-marello-ce-2.1-postgresql` or `7.4-fpm-marello-ce-2.1-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ce-2.1-postgresql` or `7.4-fpm-blackfire-marello-ce-2.1-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ce-2.1-postgresql` or `7.4-fpm-xdebug-marello-ce-2.1-mysql` - -### Marello Community Edition - Version 2.2 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ce-2.2-postgresql` or `7.1-cli-marello-ce-2.2-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ce-2.2-postgresql` or `7.1-cli-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ce-2.2-postgresql` or `7.1-cli-xdebug-marello-ce-2.2-mysql` - * FPM - * standard `7.1-fpm-marello-ce-2.2-postgresql` or `7.1-fpm-marello-ce-2.2-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ce-2.2-postgresql` or `7.1-fpm-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ce-2.2-postgresql` or `7.1-fpm-xdebug-marello-ce-2.2-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ce-2.2-postgresql` or `7.2-cli-marello-ce-2.2-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ce-2.2-postgresql` or `7.2-cli-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ce-2.2-postgresql` or `7.2-cli-xdebug-marello-ce-2.2-mysql` - * FPM - * standard `7.2-fpm-marello-ce-2.2-postgresql` or `7.2-fpm-marello-ce-2.2-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ce-2.2-postgresql` or `7.2-fpm-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ce-2.2-postgresql` or `7.2-fpm-xdebug-marello-ce-2.2-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ce-2.2-postgresql` or `7.3-cli-marello-ce-2.2-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ce-2.2-postgresql` or `7.3-cli-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ce-2.2-postgresql` or `7.3-cli-xdebug-marello-ce-2.2-mysql` - * FPM - * standard `7.3-fpm-marello-ce-2.2-postgresql` or `7.3-fpm-marello-ce-2.2-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ce-2.2-postgresql` or `7.3-fpm-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ce-2.2-postgresql` or `7.3-fpm-xdebug-marello-ce-2.2-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ce-2.2-postgresql` or `7.4-cli-marello-ce-2.2-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ce-2.2-postgresql` or `7.4-cli-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ce-2.2-postgresql` or `7.4-cli-xdebug-marello-ce-2.2-mysql` - * FPM - * standard `7.4-fpm-marello-ce-2.2-postgresql` or `7.4-fpm-marello-ce-2.2-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ce-2.2-postgresql` or `7.4-fpm-blackfire-marello-ce-2.2-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ce-2.2-postgresql` or `7.4-fpm-xdebug-marello-ce-2.2-mysql` - -### Marello Enterprise Edition - Version 1.3 - -This version was discontinued - -### Marello Enterprise Edition - Version 2.0 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ee-2.0-postgresql` or `7.1-cli-marello-ee-2.0-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ee-2.0-postgresql` or `7.1-cli-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ee-2.0-postgresql` or `7.1-cli-xdebug-marello-ee-2.0-mysql` - * FPM - * standard `7.1-fpm-marello-ee-2.0-postgresql` or `7.1-fpm-marello-ee-2.0-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ee-2.0-postgresql` or `7.1-fpm-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ee-2.0-postgresql` or `7.1-fpm-xdebug-marello-ee-2.0-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ee-2.0-postgresql` or `7.2-cli-marello-ee-2.0-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ee-2.0-postgresql` or `7.2-cli-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ee-2.0-postgresql` or `7.2-cli-xdebug-marello-ee-2.0-mysql` - * FPM - * standard `7.2-fpm-marello-ee-2.0-postgresql` or `7.2-fpm-marello-ee-2.0-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ee-2.0-postgresql` or `7.2-fpm-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ee-2.0-postgresql` or `7.2-fpm-xdebug-marello-ee-2.0-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ee-2.0-postgresql` or `7.3-cli-marello-ee-2.0-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ee-2.0-postgresql` or `7.3-cli-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ee-2.0-postgresql` or `7.3-cli-xdebug-marello-ee-2.0-mysql` - * FPM - * standard `7.3-fpm-marello-ee-2.0-postgresql` or `7.3-fpm-marello-ee-2.0-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ee-2.0-postgresql` or `7.3-fpm-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ee-2.0-postgresql` or `7.3-fpm-xdebug-marello-ee-2.0-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ee-2.0-postgresql` or `7.4-cli-marello-ee-2.0-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ee-2.0-postgresql` or `7.4-cli-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ee-2.0-postgresql` or `7.4-cli-xdebug-marello-ee-2.0-mysql` - * FPM - * standard `7.4-fpm-marello-ee-2.0-postgresql` or `7.4-fpm-marello-ee-2.0-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ee-2.0-postgresql` or `7.4-fpm-blackfire-marello-ee-2.0-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ee-2.0-postgresql` or `7.4-fpm-xdebug-marello-ee-2.0-mysql` - -### Marello Enterprise Edition - Version 2.1 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ee-2.1-postgresql` or `7.1-cli-marello-ee-2.1-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ee-2.1-postgresql` or `7.1-cli-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ee-2.1-postgresql` or `7.1-cli-xdebug-marello-ee-2.1-mysql` - * FPM - * standard `7.1-fpm-marello-ee-2.1-postgresql` or `7.1-fpm-marello-ee-2.1-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ee-2.1-postgresql` or `7.1-fpm-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ee-2.1-postgresql` or `7.1-fpm-xdebug-marello-ee-2.1-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ee-2.1-postgresql` or `7.2-cli-marello-ee-2.1-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ee-2.1-postgresql` or `7.2-cli-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ee-2.1-postgresql` or `7.2-cli-xdebug-marello-ee-2.1-mysql` - * FPM - * standard `7.2-fpm-marello-ee-2.1-postgresql` or `7.2-fpm-marello-ee-2.1-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ee-2.1-postgresql` or `7.2-fpm-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ee-2.1-postgresql` or `7.2-fpm-xdebug-marello-ee-2.1-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ee-2.1-postgresql` or `7.3-cli-marello-ee-2.1-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ee-2.1-postgresql` or `7.3-cli-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ee-2.1-postgresql` or `7.3-cli-xdebug-marello-ee-2.1-mysql` - * FPM - * standard `7.3-fpm-marello-ee-2.1-postgresql` or `7.3-fpm-marello-ee-2.1-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ee-2.1-postgresql` or `7.3-fpm-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ee-2.1-postgresql` or `7.3-fpm-xdebug-marello-ee-2.1-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ee-2.1-postgresql` or `7.4-cli-marello-ee-2.1-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ee-2.1-postgresql` or `7.4-cli-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ee-2.1-postgresql` or `7.4-cli-xdebug-marello-ee-2.1-mysql` - * FPM - * standard `7.4-fpm-marello-ee-2.1-postgresql` or `7.4-fpm-marello-ee-2.1-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ee-2.1-postgresql` or `7.4-fpm-blackfire-marello-ee-2.1-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ee-2.1-postgresql` or `7.4-fpm-xdebug-marello-ee-2.1-mysql` - -### Marello Enterprise Edition - Version 2.2 - -* PHP 7.1 - * CLI - * standard `7.1-cli-marello-ee-2.2-postgresql` or `7.1-cli-marello-ee-2.2-mysql` - * with Blackfire `7.1-cli-blackfire-marello-ee-2.2-postgresql` or `7.1-cli-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.1-cli-xdebug-marello-ee-2.2-postgresql` or `7.1-cli-xdebug-marello-ee-2.2-mysql` - * FPM - * standard `7.1-fpm-marello-ee-2.2-postgresql` or `7.1-fpm-marello-ee-2.2-mysql` - * with Blackfire `7.1-fpm-blackfire-marello-ee-2.2-postgresql` or `7.1-fpm-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.1-fpm-xdebug-marello-ee-2.2-postgresql` or `7.1-fpm-xdebug-marello-ee-2.2-mysql` - -* PHP 7.2 - * CLI - * standard `7.2-cli-marello-ee-2.2-postgresql` or `7.2-cli-marello-ee-2.2-mysql` - * with Blackfire `7.2-cli-blackfire-marello-ee-2.2-postgresql` or `7.2-cli-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.2-cli-xdebug-marello-ee-2.2-postgresql` or `7.2-cli-xdebug-marello-ee-2.2-mysql` - * FPM - * standard `7.2-fpm-marello-ee-2.2-postgresql` or `7.2-fpm-marello-ee-2.2-mysql` - * with Blackfire `7.2-fpm-blackfire-marello-ee-2.2-postgresql` or `7.2-fpm-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.2-fpm-xdebug-marello-ee-2.2-postgresql` or `7.2-fpm-xdebug-marello-ee-2.2-mysql` - -* PHP 7.3 (not supported by Oro/Marello) - * CLI - * standard `7.3-cli-marello-ee-2.2-postgresql` or `7.3-cli-marello-ee-2.2-mysql` - * with Blackfire `7.3-cli-blackfire-marello-ee-2.2-postgresql` or `7.3-cli-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.3-cli-xdebug-marello-ee-2.2-postgresql` or `7.3-cli-xdebug-marello-ee-2.2-mysql` - * FPM - * standard `7.3-fpm-marello-ee-2.2-postgresql` or `7.3-fpm-marello-ee-2.2-mysql` - * with Blackfire `7.3-fpm-blackfire-marello-ee-2.2-postgresql` or `7.3-fpm-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.3-fpm-xdebug-marello-ee-2.2-postgresql` or `7.3-fpm-xdebug-marello-ee-2.2-mysql` - -* PHP 7.4 (not supported by Oro/Marello) - * CLI - * standard `7.4-cli-marello-ee-2.2-postgresql` or `7.4-cli-marello-ee-2.2-mysql` - * with Blackfire `7.4-cli-blackfire-marello-ee-2.2-postgresql` or `7.4-cli-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.4-cli-xdebug-marello-ee-2.2-postgresql` or `7.4-cli-xdebug-marello-ee-2.2-mysql` - * FPM - * standard `7.4-fpm-marello-ee-2.2-postgresql` or `7.4-fpm-marello-ee-2.2-mysql` - * with Blackfire `7.4-fpm-blackfire-marello-ee-2.2-postgresql` or `7.4-fpm-blackfire-marello-ee-2.2-mysql` - * with Xdebug `7.4-fpm-xdebug-marello-ee-2.2-postgresql` or `7.4-fpm-xdebug-marello-ee-2.2-mysql` +### With MySQL database backend + +| Application | Version | PHP 7.1 | PHP 7.2 | PHP 7.3 | PHP 7.4 | PHP 8.0 | +| -------------- | ------- | --------------- | ------------ | --------------- | --------------- | --------------- | +| OroPlatform CE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroPlatform EE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCRM CE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCRM EE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCommerce CE | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCommerce EE | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| Marello CE | ^1.5.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^2.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.1 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.2 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| Marello EE | ^1.3.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^2.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.1 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.2 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | + +### With PostgreSQL database backend + +| Application | Version | PHP 7.1 | PHP 7.2 | PHP 7.3 | PHP 7.4 | PHP 8.0 | +| -------------- | ------- | --------------- | ------------ | --------------- | --------------- | --------------- | +| OroPlatform CE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| OroPlatform EE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCRM CE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCRM EE | ^2.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCommerce CE | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| OroCommerce EE | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^3.1.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^4.1.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| Marello CE | ^1.5.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^1.6.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^2.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.1 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.2 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental | +| Marello EE | ^1.3.0 | ⚠️ discontinued | ❌ | ❌️ | ❌️ | ❌ | +| | ^2.0 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.1 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^2.2 | ✅ | ✅ | ⚠️ experimental | ⚠️ experimental | ⚠️ experimental | +| | ^3.0 | ❌ | ❌ | ✅️ | ✅️ | ⚠️ experimental |