summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-03-05 15:55:49 -0800
committerFrédéric Guillot <fred@kanboard.net>2018-03-05 15:55:49 -0800
commit9c9e079bcdddcedcc706834eb6e80a1aa4befdc6 (patch)
treed6849c87e080bf7269ef7af4130223444d253b52 /vendor
parent95ac11a6aad8238a8349d8bda421739307987cae (diff)
Always display SQL errors
Diffstat (limited to 'vendor')
-rw-r--r--vendor/composer/autoload_classmap.php1
-rw-r--r--vendor/composer/autoload_static.php1
-rw-r--r--vendor/composer/installed.json24
-rw-r--r--vendor/fguillot/picodb/lib/PicoDb/StatementHandler.php2
-rw-r--r--vendor/symfony/finder/Finder.php4
5 files changed, 19 insertions, 13 deletions
diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php
index 77b859b1..f86dc910 100644
--- a/vendor/composer/autoload_classmap.php
+++ b/vendor/composer/autoload_classmap.php
@@ -320,6 +320,7 @@ return array(
'Kanboard\\Core\\Log\\Stderr' => $baseDir . '/app/Core/Log/Stderr.php',
'Kanboard\\Core\\Log\\Stdout' => $baseDir . '/app/Core/Log/Stdout.php',
'Kanboard\\Core\\Log\\Syslog' => $baseDir . '/app/Core/Log/Syslog.php',
+ 'Kanboard\\Core\\Log\\System' => $baseDir . '/app/Core/Log/System.php',
'Kanboard\\Core\\Mail\\Client' => $baseDir . '/app/Core/Mail/Client.php',
'Kanboard\\Core\\Mail\\ClientInterface' => $baseDir . '/app/Core/Mail/ClientInterface.php',
'Kanboard\\Core\\Mail\\Transport\\Mail' => $baseDir . '/app/Core/Mail/Transport/Mail.php',
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index 953a8bd0..5e3804fc 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -454,6 +454,7 @@ class ComposerStaticInitbdc3716ceecc7570f8ff9a8407f0ca0e
'Kanboard\\Core\\Log\\Stderr' => __DIR__ . '/../..' . '/app/Core/Log/Stderr.php',
'Kanboard\\Core\\Log\\Stdout' => __DIR__ . '/../..' . '/app/Core/Log/Stdout.php',
'Kanboard\\Core\\Log\\Syslog' => __DIR__ . '/../..' . '/app/Core/Log/Syslog.php',
+ 'Kanboard\\Core\\Log\\System' => __DIR__ . '/../..' . '/app/Core/Log/System.php',
'Kanboard\\Core\\Mail\\Client' => __DIR__ . '/../..' . '/app/Core/Mail/Client.php',
'Kanboard\\Core\\Mail\\ClientInterface' => __DIR__ . '/../..' . '/app/Core/Mail/ClientInterface.php',
'Kanboard\\Core\\Mail\\Transport\\Mail' => __DIR__ . '/../..' . '/app/Core/Mail/Transport/Mail.php',
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 7a08c20f..24b51fc4 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -950,17 +950,17 @@
},
{
"name": "fguillot/picodb",
- "version": "v1.0.17",
- "version_normalized": "1.0.17.0",
+ "version": "v1.0.18",
+ "version_normalized": "1.0.18.0",
"source": {
"type": "git",
"url": "https://github.com/fguillot/picoDb.git",
- "reference": "1699864992c40ad02395e95d7fbf44a571a116f3"
+ "reference": "4df08a3cc3c4a39e6bb329872f5d020fe135f805"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fguillot/picoDb/zipball/1699864992c40ad02395e95d7fbf44a571a116f3",
- "reference": "1699864992c40ad02395e95d7fbf44a571a116f3",
+ "url": "https://api.github.com/repos/fguillot/picoDb/zipball/4df08a3cc3c4a39e6bb329872f5d020fe135f805",
+ "reference": "4df08a3cc3c4a39e6bb329872f5d020fe135f805",
"shasum": ""
},
"require": {
@@ -969,7 +969,7 @@
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
- "time": "2018-02-14T00:51:01+00:00",
+ "time": "2018-03-05T22:39:16+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -992,23 +992,23 @@
},
{
"name": "symfony/finder",
- "version": "v3.4.5",
- "version_normalized": "3.4.5.0",
+ "version": "v3.4.6",
+ "version_normalized": "3.4.6.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "6a615613745cef820d807443f32076bb9f5d0a38"
+ "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/6a615613745cef820d807443f32076bb9f5d0a38",
- "reference": "6a615613745cef820d807443f32076bb9f5d0a38",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/a479817ce0a9e4adfd7d39c6407c95d97c254625",
+ "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625",
"shasum": ""
},
"require": {
"php": "^5.5.9|>=7.0.8"
},
- "time": "2018-02-11T17:15:12+00:00",
+ "time": "2018-03-05T18:28:11+00:00",
"type": "library",
"extra": {
"branch-alias": {
diff --git a/vendor/fguillot/picodb/lib/PicoDb/StatementHandler.php b/vendor/fguillot/picodb/lib/PicoDb/StatementHandler.php
index a7021b36..d0cdaa49 100644
--- a/vendor/fguillot/picodb/lib/PicoDb/StatementHandler.php
+++ b/vendor/fguillot/picodb/lib/PicoDb/StatementHandler.php
@@ -348,6 +348,6 @@ class StatementHandler
return false;
}
- throw new SQLException('SQL error'.($this->logQueries ? ': '.$e->getMessage() : ''));
+ throw new SQLException('SQL Error: '.$e->getMessage());
}
}
diff --git a/vendor/symfony/finder/Finder.php b/vendor/symfony/finder/Finder.php
index 8e33d411..c28aaf74 100644
--- a/vendor/symfony/finder/Finder.php
+++ b/vendor/symfony/finder/Finder.php
@@ -297,6 +297,10 @@ class Finder implements \IteratorAggregate, \Countable
/**
* Excludes directories.
*
+ * Directories passed as argument must be relative to the ones defined with the `in()` method. For example:
+ *
+ * $finder->in(__DIR__)->exclude('ruby');
+ *
* @param string|array $dirs A directory path or an array of directories
*
* @return $this