> 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/getting-started/available-commands/cli.md).

# Enter application CLI

## `yarn cli` or `npm run cli`

Opens a new instance of Bash with aliases for PHP, Composer and Magento used in Create Magento App project.

<figure><img src="/files/DZERXC8WvXakaEhv6AMj" alt=""><figcaption></figcaption></figure>

## **Usage example**

First, run the script:

```bash
npm run cli # for NPM
yarn cli # for Yarn
```

Now, in the opened terminal and execute commands:

```bash
php -v
> PHP 7.4.30 (cli) ...

composer --version
> Composer version 1.10.19

# Can be used with alias
c --version
> Composer version 1.10.19

magento setup:upgrade
> ... magento upgrade output

# Can be used with alias
m se:up
> ...magento upgrade output
```
