Skip to content

Commit a8d88b6

Browse files
committed
Merge branch '3.2'
* 3.2: store debugVersion in object abstraction so don't need to repeatedly retrieve value via container's data attrib improve backwards compatibility with PhpDebugConsole < 3.2 update readme * bump jquery url to 3.7.1 * fix iterating over cases * compatibility with PHPDebugConsole 3.2 Compatibility with PHPDebugConsole 3.2 + refactor Object dumper
2 parents 5bb96c8 + e5b2402 commit a8d88b6

15 files changed

Lines changed: 1922 additions & 1147 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"psr-4": { "bdk\\Debug\\": "src/" }
1717
},
1818
"require": {
19-
"bdk/debug": "dev-master"
19+
"bdk/debug": "^3.2"
2020
},
2121
"scripts": {
2222
"post-create-project-cmd": "php -r \"copy('src/index.php', 'index.php');\""

src/WampClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(Debug $debug, $cfg = array())
3737
$this->debug = $debug;
3838
$this->request = $debug->serverRequest;
3939
$this->cfg = \array_merge(array(
40-
'jquery' => '//ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js',
40+
'jquery' => '//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js',
4141
'bootstrapJs' => '//stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js',
4242
'bootstrapCss' => '//stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css',
4343
'filepathScript' => __DIR__ . '/js/main.min.js',

0 commit comments

Comments
 (0)