data-src=paas-only.md
Prerequisites
- Adobe Commerce on cloud infrastructure or on-premises: 2.4.5+
- PHP 8.1+
- Magento Open Source is not supported.
Installation
To install custom attributes in Adobe Commerce:
-
Run the following command to install the modules:
composer require magento/out-of-process-custom-attributes=^0.6.0 --with-dependenciesTo add support for B2B entities (companies and negotiable quotes), also install the B2B modules. This metapackage depends on the base metapackage, which Composer installs automatically.
composer require magento/out-of-process-custom-attributes-b2b=^0.1.7 --with-dependencies -
Enable the new modules:
bin/magento module:enable Magento_CustomAttributeSerializable bin/magento module:enable Magento_CustomAttributeSerializableGraphQlIf you installed the B2B modules, enable them as well:
bin/magento module:enable Magento_CustomAttributeSerializableB2b bin/magento module:enable Magento_CustomAttributeSerializableB2bGraphQl -
For on-premises installations, run the following command to upgrade Adobe Commerce and clear the cache.
bin/magento setup:upgrade && bin/magento cache:clean