Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:103853 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 39476 invoked from network); 27 Jan 2019 23:00:18 -0000 Received: from unknown (HELO mail-it1-f176.google.com) (209.85.166.176) by pb1.pair.com with SMTP; 27 Jan 2019 23:00:18 -0000 Received: by mail-it1-f176.google.com with SMTP id p197so16565601itp.0 for ; Sun, 27 Jan 2019 11:39:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=9Myl99QxSPGQMv8Qt+rSFqSmyaBdgE58ZdzEYmuYpzk=; b=mDBL2vGzogz0lOBD0ZwumdYXOQ0i2pBVT41PiCQgJA9OcTE1lNfHHQhe6+9KnUyNDu q/zI3m1kH25jh+ypaAg7uxhOQQvWtiva74qYJ4n1hJ0Zopko1cLL9bhN+5UDIpspQYUW Y8323QihnVhVy3u/pw0uxk0OKX/iVxZvN2dWKJVwLxVQqDEf9f2aSGnCmGONLS5NqjpY ZNlWU70nYaOviNIshor3V5I41Z3/F4CeVhggXeE0A3u4LuYleSyGoJasFY3KI2orFT+f g1C002epuTW0XL+o787mL2iRPjdK8Y1zi+g9k4zWubW29ZXEQ+pyoZQqW5pjl1i85g1F zG6g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=9Myl99QxSPGQMv8Qt+rSFqSmyaBdgE58ZdzEYmuYpzk=; b=YiLMDa31B505RGaaxGVCA+irn2rJWh3BWgPo9VH4+3thZcovwjfjhPhG4L8wnBHmMh hGGFD02eV9L5UuWwnm1PqOdXqz86CJYxwZGKR1yW6wbaxS3gXu9TYckSkKe5hmJ9ErQB maf2vvvasl6srqsT+wD5QV2jiR0x3J1TOPKZndakv3GuGmgIVYe8bfwWN7vCLDDXUyU7 4K9N0wWaECYzKEgehfXuEq15dK/lTPfElO/bkcRBlgHPjzKiTE0X+h5zKOg9EnAJZBrn H/iGBXXyiAmF8C3sJHb51WinfBy5Ax0I8Pj79wueilTAzpJIahO+j3leyzlGXHVjyF+/ /4UA== X-Gm-Message-State: AJcUukfFtjJJjfyeap/OXT2xFfCKH3ny9MfMB6VQmoPqlIHQxgKrsDtc GUjJrFvPXIehg8d0rHzNAhVInFiaGZL414EN2dqPzCuC X-Google-Smtp-Source: ALg8bN4r+eW/QTmyS5S5JYIU0afn9PK5QJ1LwI8jWN2MSP2aQdCKCSovd+8fVgd4YdrfkiaG/A4FTV5nFlA+hOao4vY= X-Received: by 2002:a05:660c:81a:: with SMTP id j26mr8856875itk.70.1548617955312; Sun, 27 Jan 2019 11:39:15 -0800 (PST) MIME-Version: 1.0 Date: Sun, 27 Jan 2019 20:38:55 +0100 Message-ID: To: PHP internals Content-Type: multipart/alternative; boundary="0000000000001e871e058075b715" Subject: Simplify license headers From: nikita.ppv@gmail.com (Nikita Popov) --0000000000001e871e058075b715 Content-Type: text/plain; charset="UTF-8" Hi internals, Some of our source files currently contain a license header similar to this: /* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2018 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans | | Zeev Suraski | +----------------------------------------------------------------------+ */ I would like to make two changes to this header: 1. Change "PHP Version 7" line to just "PHP", to avoid the necessity of updating this for new major versions. I don't think the version information here is particularly useful to anybody. 2. Remove the "Copyright (c) 1997-2018 The PHP Group" line. Apart from requiring a yearly update, this line is actually complete misinformation, because the PHP group does *not* hold the copyright for the PHP source code. This would require a copyright assignment agreement on behalf of all contributors, which we do not collect. We could also just drop the header entirely, I'm just proposing these two changes as the path of least resistance towards getting the "annoying" parts removed. Regards, Nikita --0000000000001e871e058075b715--