Skip to content

Commit 3b6ed28

Browse files
chore(autoloader): Dump autoloader
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent 566727c commit 3b6ed28

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

composer/installed.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,17 +2508,17 @@
25082508
},
25092509
{
25102510
"name": "pear/pear-core-minimal",
2511-
"version": "v1.10.15",
2512-
"version_normalized": "1.10.15.0",
2511+
"version": "v1.10.16",
2512+
"version_normalized": "1.10.16.0",
25132513
"source": {
25142514
"type": "git",
25152515
"url": "https://github.com/pear/pear-core-minimal.git",
2516-
"reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
2516+
"reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
25172517
},
25182518
"dist": {
25192519
"type": "zip",
2520-
"url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
2521-
"reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
2520+
"url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
2521+
"reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
25222522
"shasum": ""
25232523
},
25242524
"require": {
@@ -2529,7 +2529,7 @@
25292529
"replace": {
25302530
"rsky/pear-core-min": "self.version"
25312531
},
2532-
"time": "2024-03-16T18:41:45+00:00",
2532+
"time": "2024-11-24T22:27:58+00:00",
25332533
"type": "library",
25342534
"installation-source": "dist",
25352535
"autoload": {

composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@
335335
'dev_requirement' => false,
336336
),
337337
'pear/pear-core-minimal' => array(
338-
'pretty_version' => 'v1.10.15',
339-
'version' => '1.10.15.0',
340-
'reference' => 'ce0adade8b97561656ace07cdaac4751c271ea8c',
338+
'pretty_version' => 'v1.10.16',
339+
'version' => '1.10.16.0',
340+
'reference' => 'c0f51b45f50683bf5bbf558036854ebc9b54d033',
341341
'type' => 'library',
342342
'install_path' => __DIR__ . '/../pear/pear-core-minimal',
343343
'aliases' => array(),
@@ -559,7 +559,7 @@
559559
'rsky/pear-core-min' => array(
560560
'dev_requirement' => false,
561561
'replaced' => array(
562-
0 => 'v1.10.15',
562+
0 => 'v1.10.16',
563563
),
564564
),
565565
'sabre/dav' => array(

pear/pear-core-minimal/src/PEAR.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@
4949
$GLOBALS['_PEAR_shutdown_funcs'] = array();
5050
$GLOBALS['_PEAR_error_handler_stack'] = array();
5151

52-
@ini_set('track_errors', true);
52+
if(function_exists('ini_set')) {
53+
@ini_set('track_errors', true);
54+
}
5355

5456
/**
5557
* Base class for other PEAR classes. Provides rudimentary

0 commit comments

Comments
 (0)