You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.4 KiB

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