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