xref: /PHP-5.6/README.md (revision 29d8aad2)
1The PHP Interpreter
2===================
3
4This is the github mirror of the official PHP repository located at
5http://git.php.net.
6
7[![Build Status](https://secure.travis-ci.org/php/php-src.png?branch=master)](http://travis-ci.org/php/php-src)
8
9Pull Requests
10=============
11PHP accepts pull requests via github. Discussions are done on github, but
12depending on the topic can also be relayed to the official PHP developer
13mailinglist internals@lists.php.net.
14
15New features require an RFC and must be accepted by the developers.
16See https://wiki.php.net/rfc and https://wiki.php.net/rfc/voting for more
17information on the process.
18
19Bug fixes **do not** require an RFC, but require a bugtracker ticket. Always
20open a ticket at https://bugs.php.net and reference the bug id using #NNNNNN.
21
22    Fix #55371: get_magic_quotes_gpc() throws deprecation warning
23
24    After removing magic quotes, the get_magic_quotes_gpc function caused
25    a deprecate warning. get_magic_quotes_gpc can be used to detected
26    the magic_quotes behavior and therefore should not raise a warning at any
27    time. The patch removes this warning
28
29We do not merge pull requests directly on github. All PRs will be
30pulled and pushed through http://git.php.net.
31
32
33Guidelines for contributors
34===========================
35- [CODING_STANDARDS](/CODING_STANDARDS)
36- [README.GIT-RULES](/README.GIT-RULES)
37- [README.MAILINGLIST_RULES](/README.MAILINGLIST_RULES)
38- [README.RELEASE_PROCESS](/README.RELEASE_PROCESS)
39
40