-
Notifications
You must be signed in to change notification settings - Fork 542
/
get-involved.php
83 lines (70 loc) · 3.14 KB
/
get-involved.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
$_SERVER['BASE_PAGE'] = 'get-involved.php';
include_once __DIR__ . '/include/prepend.inc';
site_header("Get Involved", ["current" => "community"]);
?>
<h2 class="content-title" id="contributing-to-php">Contributing to PHP</h2>
<div class="content-box">
<p>
Anybody who programs in PHP can be a contributing member of the community
that develops and deploys it; the task of deploying PHP, documentation and
associated websites is a never ending one. With every release, or release
candidate comes a wave of work, which takes a lot of organization and
co-ordination.
</p>
<p>
With the introduction of release managers comes a smoother release process,
but help is still needed: testing release candidates, finding and squashing
bugs in tests, documentation, and sources.
</p>
</div>
<h3 class="content-title" id="ways-to-contribute">Four Best Ways to Contribute</h3>
<ol class="content-box listed">
<li>Running test suites in <a href="https://qa.php.net/">RC</a>
and <a href="https://php.net/releases">release</a> distributions of PHP</li>
<li>Help finding and diagnosing failed tests, see
the <a href="https://qa.php.net/write-test.php">phpt documentation</a></li>
<li>Filing and resolving bug reports
on <a href="https://github.com/php/php-src/issues/">GitHub Issues</a>.</li>
<li>Help maintain and or translate documentation files
at the doc-* repositories on <a href="https://github.com/php/?q=doc">github</a>. Check out our
<a href="https://doc.php.net/guide/">guide for contributors</a>.</li>
</ol>
<h3 class="content-header" id="php-src">Development of the PHP source</h3>
<div class="content-box">
<p>
Someone hoping to become involved in the maintenance and development of
the source should be experienced in all of the areas mentioned above, as
this creates a strong team; everyone knows how every other part of the
project works.
</p>
<p>
You will also need experience in C programming as PHP is written entirely in C.
</p>
</div>
<h3 class="content-title" id="references">Useful links for developers</h3>
<ul class="content-box listed">
<li><a href="https://heap.space">lxr</a> - an online interface to the
PHP source, providing search facilities useful for programmers and researchers</li>
<li><a href="https://wiki.php.net/rfc/howto">The RFC process</a> - the process
by which developers can suggest and discuss new ideas with the community</li>
<li><a href="/build-setup.php">Developer Setup Help</a> - some helpful information
regarding setting up a development environment for PHP</li>
<li><a href="/mailing-lists.php">Mailing List</a> - list of general and internal mailing lists
used by PHP</li>
</ul>
<?php
$SIDEBAR_DATA = '
<div class="panel">
<div class="headline">Table of Contents</div>
<div class="body">
<ul>
<li><a href="#contributing-to-php">Contributing to PHP</a></li>
<li><a href="#ways-to-contribute">Four Best Ways to Contribute</a></li>
<li><a href="#php-src">Development of the PHP source</a></li>
<li><a href="#references">Useful links for developers</a></li>
</ul>
</div>
</div>
';
site_footer(['sidebar' => $SIDEBAR_DATA]);