Skip to content

Commit c3bd83e

Browse files
committed
Merge branch '6.4' into 7.2
* 6.4: Minor tweak [Console] Fix argument position for addOption Add new core team members Move the core team page to the contributing root dir as it's not just about code
2 parents 9ba46bf + d232ccc commit c3bd83e

File tree

10 files changed

+18
-9
lines changed

10 files changed

+18
-9
lines changed

_build/redirection_map

+1
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@
430430
/email/spool /mailer
431431
/email/testing /mailer
432432
/contributing/community/other /contributing/community
433+
/contributing/code/core_team /contributing/core_team
433434
/profiler/storage /profiler
434435
/setup/composer /setup
435436
/security/security_checker /setup

_images/sources/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ only the asciicast file).
9696

9797
[1]: http://dia-installer.de/
9898
[2]: https://fonts.google.com/specimen/PT+Sans+Narrow
99-
[3]: https://symfony.com/doc/current/contributing/code/core_team.html
99+
[3]: https://symfony.com/doc/current/contributing/core_team.html
100100
[4]: https://github.com/asciinema/asciinema
101101
[5]: https://github.com/asciinema/agg
102102
[6]: https://www.jetbrains.com/lp/mono/

console/input.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ can also implement value completion for the input in your commands. For
356356
instance, you may want to complete all usernames from the database in the
357357
``name`` argument of your greet command.
358358

359-
To achieve this, use the 5th argument of ``addArgument()``/``addOption``::
359+
To achieve this, use the 5th argument of ``addArgument()`` or the 6th argument of ``addOption()``::
360360

361361
// ...
362362
use Symfony\Component\Console\Completion\CompletionInput;

contributing/code/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Contributing Code
99
reproducer
1010
pull_requests
1111
maintenance
12-
core_team
1312
security
1413
tests
1514
bc

contributing/code/pull_requests.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ perspective, please join the ``#contribs`` channel on `Symfony Slack`_. If you
404404
receive feedback you find abusive please contact the
405405
:doc:`CARE team </contributing/code_of_conduct/care_team>`.
406406

407-
The :doc:`core team </contributing/code/core_team>` is responsible for deciding
407+
The :doc:`core team </contributing/core_team>` is responsible for deciding
408408
which PR gets merged, so their feedback is the most relevant. So do not feel
409409
pressured to refactor your code immediately when someone provides feedback.
410410

contributing/code/standards.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ Documentation
300300
* When adding a new class or when making significant changes to an existing class,
301301
an ``@author`` tag with personal contact information may be added, or expanded.
302302
Please note it is possible to have the personal contact information updated or
303-
removed per request to the :doc:`core team </contributing/code/core_team>`.
303+
removed per request to the :doc:`core team </contributing/core_team>`.
304304

305305
License
306306
~~~~~~~

contributing/code_of_conduct/care_team.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ also contact all of them at once by emailing ** [email protected] **.
5454
About the CARE Team
5555
-------------------
5656

57-
The :doc:`Symfony project leader </contributing/code/core_team>` appoints the CARE
57+
The :doc:`Symfony project leader </contributing/core_team>` appoints the CARE
5858
team with candidates they see fit. The CARE team will consist of at least
5959
3 people. The team should be representing as many demographics as possible,
6060
ideally from different employers.

contributing/community/releases.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ PHP Compatibility
113113
-----------------
114114

115115
The **minimum** PHP version is decided for each **major** Symfony version by consensus
116-
amongst the :doc:`core team </contributing/code/core_team>` and documented as
116+
amongst the :doc:`core team </contributing/core_team>` and documented as
117117
part of the :ref:`technical requirements for running Symfony applications
118118
<symfony-tech-requirements>`.
119119

contributing/code/core_team.rst contributing/core_team.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ Active Core Members
8282
* **Oskar Stark** (`OskarStark`_);
8383
* **Mathieu Santostefano** (`welcomattic`_);
8484
* **Kevin Bond** (`kbond`_);
85-
* **Jérôme Tamarelle** (`gromnan`_).
85+
* **Jérôme Tamarelle** (`gromnan`_);
86+
* **Berislav Balogović** (`hypemc`_);
87+
* **Mathias Arlaud** (`mtarld`_);
88+
* **Florent Morselli** (`spomky`_);
89+
* **Alexandre Daubois** (`alexandre-daubois`_).
8690

8791
* **Security Team** (``@symfony/security`` on GitHub):
8892

@@ -255,3 +259,7 @@ discretion of the **Project Leader**.
255259
.. _`smnandre`: https://github.com/smnandre/
256260
.. _`kocal`: https://github.com/kocal/
257261
.. _`webmamba`: https://github.com/webmamba/
262+
.. _`hypemc`: https://github.com/hypemc/
263+
.. _`mtarld`: https://github.com/mtarld/
264+
.. _`spomky`: https://github.com/spomky/
265+
.. _`alexandre-daubois`: https://github.com/alexandre-daubois/

contributing/map.rst.inc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* :doc:`The Core Team </contributing/core_team>`
2+
13
* **Code of Conduct**
24

35
* :doc:`/contributing/code_of_conduct/code_of_conduct`
@@ -12,7 +14,6 @@
1214
* :doc:`Pull Requests </contributing/code/pull_requests>`
1315
* :doc:`Reviewing Issues and Pull Requests </contributing/community/reviews>`
1416
* :doc:`Maintenance </contributing/code/maintenance>`
15-
* :doc:`The Core Team </contributing/code/core_team>`
1617
* :doc:`Security </contributing/code/security>`
1718
* :doc:`Tests </contributing/code/tests>`
1819
* :doc:`Backward Compatibility </contributing/code/bc>`

0 commit comments

Comments
 (0)