Skip to content

Commit b94b57d

Browse files
authored
Merge pull request shopware#961 from amenk/patch-2
Don't abbreviate composer require
2 parents 83c0737 + 4d4d90c commit b94b57d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guides/installation/template.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ The template is small and does not contain any dev-tooling or integrations like
102102

103103
```bash
104104
# Install profiler and other dev tools, eg Faker for demo data generation
105-
composer req --dev dev-tools
105+
composer require --dev dev-tools
106106

107107
# Install PaaS integration
108-
composer req paas
108+
composer require paas
109109

110110
# Install Fastly integration
111-
composer req fastly
111+
composer require fastly
112112
```
113113

114114
### Add Shopware packagist
@@ -227,10 +227,10 @@ If you want to use Shopware PaaS or Fastly, you need to install the following Co
227227

228228
```bash
229229
# PaaS
230-
composer req paas
230+
composer require paas
231231

232232
# Fastly
233-
composer req fastly
233+
composer require fastly
234234
```
235235

236236
## Update Shopware
@@ -248,13 +248,13 @@ There are two ways to update Shopware:
248248
Prior to Shopware 6.4.17.0, you have to install the Profiler bundle to get `APP_ENV=dev` working with:
249249

250250
```bash
251-
composer req --dev profiler
251+
composer require --dev profiler
252252
```
253253

254254
### framework:demo-data is missing faker classes
255255

256256
Prior to Shopware 6.4.17.0, you have to install some packages to get `framework:demo-data` command working:
257257

258258
```bash
259-
composer req --dev mbezhanov/faker-provider-collection maltyxx/images-generator
259+
composer require --dev mbezhanov/faker-provider-collection maltyxx/images-generator
260260
```

0 commit comments

Comments
 (0)