From 3b0a8695de0595d471d3383118972f10e31ab41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kuba=20Wer=C5=82os?= Date: Wed, 13 Jul 2022 14:06:21 +0200 Subject: [PATCH] Do not remote "include-path" (#12) --- src/Plugin.php | 1 + tests/fixtures/keeping_properties/composer.lock | 3 +++ tests/fixtures/keeping_properties/expected.composer.lock | 3 +++ 3 files changed, 7 insertions(+) diff --git a/src/Plugin.php b/src/Plugin.php index b75fa43..a7ab846 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -27,6 +27,7 @@ final class Plugin implements EventSubscriberInterface, PluginInterface 'description', 'dist', 'extra', + 'include-path', 'license', 'name', 'provide', diff --git a/tests/fixtures/keeping_properties/composer.lock b/tests/fixtures/keeping_properties/composer.lock index 22468c1..e7d9b0d 100644 --- a/tests/fixtures/keeping_properties/composer.lock +++ b/tests/fixtures/keeping_properties/composer.lock @@ -12,6 +12,9 @@ "homepage": "www.example.com", "readme": "./README.md", "time": "1970-01-01T00:00:00+00:00", + "include-path": [ + "./path" + ], "license": "MIT", "authors": [ { diff --git a/tests/fixtures/keeping_properties/expected.composer.lock b/tests/fixtures/keeping_properties/expected.composer.lock index e074197..42a6f42 100644 --- a/tests/fixtures/keeping_properties/expected.composer.lock +++ b/tests/fixtures/keeping_properties/expected.composer.lock @@ -5,6 +5,9 @@ "description": "description", "version": "1.0.0", "type": "library", + "include-path": [ + "./path" + ], "license": "MIT", "require": { "monolog/monolog": "dev-master"