Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:120346 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 18066 invoked from network); 18 May 2023 17:06:47 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 18 May 2023 17:06:47 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 7D3011804D7 for ; Thu, 18 May 2023 10:06:45 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS24940 176.9.0.0/16 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Thu, 18 May 2023 10:06:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1684429603; bh=5GyxzV5V+ico57q150n50apjgog9ohGLTQn15KOjceU=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=XHuHslcXdGCw7rFg7TJ3nEjtZpNGazhDDOveN+rsTemFKWtgklXiVWEbyI3nKZyQG E/lgcL5419Y3fU+Ihy1xYKZvk+pwUIadzeJJw6Vx/2SwDbzvBVMdY5Oe47Tne78bU8 5ulx8Bdju/q8i4AUTs44U35GPW/XKdLtBFB0DGFuNu6CBrHYb3RlI4y5f+/Q/arzcL 3gz1/wvcJc7xA+D1PnJDd60NAy60euvFNwqLgVdRFOFY3nayUQYSITfOyAUMvHI2C5 vsHvGXB64LDOZClJ9UitdSkxn5PO3btwIcQOMWu+pm8tARF8ErwA+B/e8bz/2LVbbY 3teakGEZl4P8Q== Message-ID: <415bfb0d-b227-35ab-cb21-75d46a647a70@bastelstu.be> Date: Thu, 18 May 2023 19:06:41 +0200 MIME-Version: 1.0 To: tag Knife , Deleu Cc: PHP internals References: Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] PHP Package for PHP From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=c3=bcsterhus?=) Hi On 5/18/23 18:13, tag Knife wrote: > An extension of this, Looking on packagist. The namespace PHP is reserved, > in collaboration with PHP, Composer and Packagist. Official PHP packages > can use the /PHP/... root namespace. > And can be published on packagist under the PHP namespace To my understanding in the https://wiki.php.net/rfc/namespaces_in_bundled_extensions RFC it was agreed *not* to use the PHP namespace and instead create appropriate top-level namespaces. The new random implementation in PHP 8.2 is already "relying" on that RFC: Everything is sitting in Random\* and that namespace is now effectively reserved for it. There was also this proposal (that did not yet go anywhere) to introduce the iterable\* top-level namespace: https://externals.io/message/118896#118896 Best regards Tim Düsterhus