├── 0000-template.md ├── LICENSE └── README.md /0000-template.md: -------------------------------------------------------------------------------- 1 | * Name: `unique_identifier` 2 | * Date: YYYY-MM-DD 3 | * Author: Your Name 4 | * Proposed Version: PHP x.y 5 | * RFC PR: [php-src/rfcs#0000](https://github.com/php-src/rfcs/pull/0000) 6 | 7 | # Introduction 8 | 9 | # Proposal 10 | 11 | # Backwards Incompatible Changes 12 | 13 | # Proposed Voting Choices 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any 2 | person obtaining a copy of this software and associated 3 | documentation files (the "Software"), to deal in the 4 | Software without restriction, including without 5 | limitation the rights to use, copy, modify, merge, 6 | publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software 8 | is furnished to do so, subject to the following 9 | conditions: 10 | 11 | The above copyright notice and this permission notice 12 | shall be included in all copies or substantial portions 13 | of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 17 | TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 18 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT 19 | SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 22 | IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 | DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PHP RFC Experiment 2 | ================== 3 | 4 | Experiment to move RFC discussions to GitHub. A pull request with the proposal is submitted against 5 | this repository and then merged if the RFC is accepted. Among other things, this allows inline 6 | comments on RFCs. 7 | 8 | This is just a one-off experiment for now, we'll have to discuss whether we want to move the RFC 9 | process towards this separately. This repository may be abandoned. Please don't submit PRs for now. 10 | --------------------------------------------------------------------------------