> 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/v1/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.

## **Usage example**

First, run the script:

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

Now, in the opened terminal call desired commands:

```bash
php -v
> PHP 7.4.13 (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
```
