1
0
Fork 0

Add php-ext to array dumper

pull/12176/head
Jordi Boggiano 2024-10-24 11:38:38 +02:00
parent 1310118101
commit 186d78cde3
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class ArrayDumper
'devAutoload' => 'autoload-dev', 'devAutoload' => 'autoload-dev',
'notificationUrl' => 'notification-url', 'notificationUrl' => 'notification-url',
'includePaths' => 'include-path', 'includePaths' => 'include-path',
'phpExt' => 'php-ext',
]; ];
$data = []; $data = [];

View File

@ -234,6 +234,11 @@ class ArrayDumperTest extends TestCase
['ssl' => ['local_cert' => '/opt/certs/test.pem']], ['ssl' => ['local_cert' => '/opt/certs/test.pem']],
'transportOptions', 'transportOptions',
], ],
[
'php-ext',
['extension-name' => 'test'],
'phpExt',
],
]; ];
} }
} }