1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Contributing
------------
Symfony is an open source, community-driven project.
If you'd like to contribute, please read the following documents:
* [Contributing Code][1]: The document index related to contributions;
* [Submitting a Patch][2]: Guidelines for submitting a pull request;
* [Pull Request Template][3]: Template header to use in your pull request
description;
```markdown
| Q | A
| ------------- | ---
| Bug fix? | yes/no
| New feature? | yes/no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | #1234
| License | MIT
| Doc PR | symfony/symfony-docs#1234
```
* [Backwards Compatibility][4]: Backward compatibility rules.
[1]: https://symfony.com/doc/current/contributing/code/index.html
[2]: https://symfony.com/doc/current/contributing/code/patches.html#check-list
[3]: https://symfony.com/doc/current/contributing/code/patches.html#make-a-pull-request
[4]: https://symfony.com/doc/current/contributing/code/bc.html#working-on-symfony-code
|