Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format according to rstfmt tool #8

Merged
merged 3 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 37 additions & 17 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,41 @@
Policies
========
##########
Policies
##########

This repository contains a list of policies that the PHP Project has
adopted through its RFC process to govern releases, voting, and naming
guidelines.
This repository contains a list of policies that the PHP Project has adopted
through its RFC process to govern releases, voting, and naming guidelines.

It contains the following items:

- `Release Process <release-process.rst>`_: When releases are made, how they
are named, our policy on version numbers, and the process on making releases.
- `Feature Proposals (RFCs) <feature-proposals.rst>`_: How to propose new
features to PHP.
- `Coding Standards <coding-standards-and-naming.rst>`_: How to name new
classes, methods, extensions, and functions.
- `Security Classification <security-classification.rst>`_: What we consider
as security issues, their severity, and how to report issues.
- `Security Policies and Process <security-policies.rst>`_: Policies and
process on how and when to update the `security.txt
<https://www.php.net/.well-known/security.txt>`_ file on
https://www.php.net.
- `Release Process <release-process.rst>`_: When releases are made, how they
are named, our policy on version numbers, and the process on making releases.

- `Feature Proposals (RFCs) <feature-proposals.rst>`_: How to propose new
features to PHP.

- `Coding Standards <coding-standards-and-naming.rst>`_: How to name new
classes, methods, extensions, and functions.

- `Security Classification <security-classification.rst>`_: What we consider as
security issues, their severity, and how to report issues.

- `Security Policies and Process <security-policies.rst>`_: Policies and
process on how and when to update the `security.txt
<https://www.php.net/.well-known/security.txt>`_ file on https://www.php.net.

************
Formatting
************

The files in this documentation are formatted using the `rstfmt
<https://github.com/dzhu/rstfmt>`_ tool, which you can install with:

.. code::

pip install rstfmt

Please run the tool before submitting a pull request:

.. code::

rstfmt -w 80 *.rst
Loading