From 0fe4c71d90ab83ad763408e6ad7ec475e889edd8 Mon Sep 17 00:00:00 2001 From: Baptiste Lafontaine Date: Thu, 8 Mar 2018 15:16:04 +0100 Subject: [PATCH] Use create-project instead of require to create reproducer project --- contributing/code/reproducer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/code/reproducer.rst b/contributing/code/reproducer.rst index 99f8699b5c4..188163fcab6 100644 --- a/contributing/code/reproducer.rst +++ b/contributing/code/reproducer.rst @@ -39,7 +39,7 @@ a PHP script, it's better to reproduce the bug by creating a new project. To do .. code-block:: terminal - $ composer require symfony/skeleton bug_app + $ composer create-project symfony/skeleton bug_app 2. Now you must add the minimum amount of code to reproduce the bug. This is the trickiest part and it's explained a bit more later.