Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
Update dependencies and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Dec 1, 2020
1 parent 34c3ab4 commit 1505b65
Show file tree
Hide file tree
Showing 17 changed files with 848 additions and 359 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"erusev/parsedown": "1.7.1",
"erusev/parsedown-extra": "0.7.1",
"michelf/php-smartypants": "1.8.1",
"getkirby/toolkit": "2.5.13",
"getkirby/toolkit": "2.5.14",
"filp/whoops": "2.1.14"
},
"archive": {
Expand Down
50 changes: 38 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kirby.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Kirby {

static public $version = '2.5.13';
static public $version = '2.5.14';
static public $instance;
static public $hooks = array();
static public $triggered = array();
Expand Down
6 changes: 3 additions & 3 deletions vendor/composer/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
*
* @author Fabien Potencier <[email protected]>
* @author Jordi Boggiano <[email protected]>
* @see http://www.php-fig.org/psr/psr-0/
* @see http://www.php-fig.org/psr/psr-4/
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
Expand All @@ -60,7 +60,7 @@ class ClassLoader
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}

return array();
Expand Down
Loading

0 comments on commit 1505b65

Please sign in to comment.