From f6f0d8033973ed0754ff86be78eb7a9e1edd2846 Mon Sep 17 00:00:00 2001 From: DanielEScherzer Date: Tue, 11 Mar 2025 09:49:13 -0700 Subject: [PATCH] composer-json-php-ext-schema.json: update `$id` to correct path Ensure that the URI given leads to the actual file rather than a 404 by fixing the end from `main/composer-json-php-ext-schema.json` to `main/resources/composer-json-php-ext-schema.json` since the file is located in the `resources` directory. --- resources/composer-json-php-ext-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/composer-json-php-ext-schema.json b/resources/composer-json-php-ext-schema.json index ca283510..55ac0820 100644 --- a/resources/composer-json-php-ext-schema.json +++ b/resources/composer-json-php-ext-schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://raw.githubusercontent.com/php/pie/main/composer-json-php-ext-schema.json", + "$id": "https://raw.githubusercontent.com/php/pie/main/resources/composer-json-php-ext-schema.json", "title": "composer.json php-ext schema", "description": "Schema for the proposed php-ext section in composer.json that the new PECL will use to build packages", "type": "object",