> For the complete documentation index, see [llms.txt](https://docs.create-magento-app.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.create-magento-app.com/container-images/php-images/php-7.3.md).

# PHP 7.3

## Magento 2.4 extensions bundle

To pull the PHP 7.3 image with Magento 2.4 extensions, you can run the following command:

```bash
docker pull ghcr.io/scandipwa/create-magento-app:php-7.3-magento-2.4
```

You can set this image in the configuration file to be used in your project.

{% code title="cma.js" %}

```javascript
/** @type {import('@scandipwa/magento-scripts').CMAConfiguration} */
module.exports = {
    // ... other configurations
    configuration: {
        php: {
            baseImage: 'ghcr.io/scandipwa/create-magento-app:php-7.3-magento-2.4'
        }
    }
};
```

{% endcode %}

## Magento 2.3 extensions bundle

To pull the PHP 7.3 image with Magento 2.3 extensions, you can run the following command:

```bash
docker pull ghcr.io/scandipwa/create-magento-app:php-7.3-magento-2.3
```

You can set this image in the configuration file to be used in your project.

{% code title="cma.js" %}

```javascript
/** @type {import('@scandipwa/magento-scripts').CMAConfiguration} */
module.exports = {
    // ... other configurations
    configuration: {
        php: {
            baseImage: 'ghcr.io/scandipwa/create-magento-app:php-7.3-magento-2.3'
        }
    }
};
```

{% endcode %}
