diff --git a/INSTALL.md b/INSTALL.md
index caa8dd1b..c32d212f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -20,6 +20,7 @@ chmod 777 cache
That's it, installation complete!
## Webserver configuration
+
Apache is the "default" webserver for GitList. You will find the configuration inside the `.htaccess` file. However, nginx and lighttpd are also supported.
### nginx server.conf
@@ -46,18 +47,20 @@ server {
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- # if you're using php5-fpm via tcp
- fastcgi_pass 127.0.0.1:9000;
-
- # if you're using php5-fpm via socket
- #fastcgi_pass unix:/var/run/php5-fpm.sock;
+ # if you're using php7.2-fpm via socket
+ fastcgi_pass unix:/var/run/php7.2-fpm.sock;
- include /etc/nginx/fastcgi_params;
+ include snippets/fastcgi-php.conf;;
}
- location / {
- try_files $uri @gitlist;
+ location ~ \.php$ {
+ include snippets/fastcgi-php.conf;
+ fastcgi_pass $php_listener;
}
+
+ location ~ /\.ht {
+ deny all;
+ }
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
add_header Vary "Accept-Encoding";
@@ -71,9 +74,7 @@ server {
# deny all;
# }
- location @gitlist {
- rewrite ^/.*$ /index.php;
- }
+
}
```
@@ -106,7 +107,7 @@ UrlToolkit {
---
-[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.2
+[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3
[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)
diff --git a/README.md b/README.md
index c8829d95..47c11d4c 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
---
-# P3X Gitlist v1.0.2
+# P3X Gitlist v1.0.3
# Description
@@ -17,12 +17,17 @@ This is Klaus Silveira's fork, with multiple themes, sub-modules and updated to
### PHP > 7.1 only
+[README](artifacts/php-7.2-ubuntu.md)
+
# Release version/update info
## Package
Done, just put on your server, nothing to build:
https://github.com/patrikx3/gitlist/releases
+### v1.0.3
+* Total bytes was not working with Twig 2
+
### v1.0.2
* Add support for .gitmodules files at repository root
* Updated to latest dependencies
@@ -104,7 +109,7 @@ If you have Composer in your path, things get easier. But you know the drill.
---
-[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.2
+[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3
[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)
diff --git a/artifacts/php-7.2-ubuntu.md b/artifacts/php-7.2-ubuntu.md
new file mode 100644
index 00000000..eead8c69
--- /dev/null
+++ b/artifacts/php-7.2-ubuntu.md
@@ -0,0 +1,34 @@
+[//]: #@corifeus-header
+
+## P3X Gitlist
+
+---
+
+[//]: #@corifeus-header:end
+# Install PHP 7.2 on Ubuntu
+
+```bash
+sudo add-apt-repository ppa:ondrej/php
+# enter (empty)
+
+sudo apt update
+sudo apt install -y php7.2
+sudo apt upgrade -y
+```
+
+[//]: #@corifeus-footer
+
+---
+
+[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3
+
+[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)
+
+
+## Sponsor
+
+[![JetBrains](https://www.patrikx3.com/images/jetbrains-logo.svg)](https://www.jetbrains.com/)
+
+
+
+[//]: #@corifeus-footer:end
\ No newline at end of file
diff --git a/composer.lock b/composer.lock
index 841cc2f6..f1a1f80e 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,6 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
+ "hash": "81df730ca4bdfc508731d863a2d529c0",
"content-hash": "c549fc2af01b991009fe5a61747d837f",
"packages": [
{
@@ -60,7 +61,7 @@
"utility",
"utils"
],
- "time": "2017-06-12T01:10:27+00:00"
+ "time": "2017-06-12 01:10:27"
},
{
"name": "paragonie/random_compat",
@@ -108,20 +109,20 @@
"pseudorandom",
"random"
],
- "time": "2017-09-27T21:40:39+00:00"
+ "time": "2017-09-27 21:40:39"
},
{
"name": "patrikx3/gitter",
- "version": "1.0.3",
+ "version": "1.0.4",
"source": {
"type": "git",
"url": "https://github.com/patrikx3/gitter.git",
- "reference": "da7d4c9a2cef47fa5f0c9243f72eac79269963e4"
+ "reference": "1ca285d400f50b5aedaee205638af4fd2e9640f0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/patrikx3/gitter/zipball/da7d4c9a2cef47fa5f0c9243f72eac79269963e4",
- "reference": "da7d4c9a2cef47fa5f0c9243f72eac79269963e4",
+ "url": "https://api.github.com/repos/patrikx3/gitter/zipball/1ca285d400f50b5aedaee205638af4fd2e9640f0",
+ "reference": "1ca285d400f50b5aedaee205638af4fd2e9640f0",
"shasum": ""
},
"require": {
@@ -131,7 +132,7 @@
},
"require-dev": {
"mockery/mockery": ">=1",
- "phpunit/phpunit": "^7",
+ "phpunit/phpunit": ">=7",
"symfony/filesystem": ">=4"
},
"type": "library",
@@ -158,13 +159,13 @@
"role": "Developer"
}
],
- "description": "Gitter allows you to interact in an object oriented manner with Git repositories.",
+ "description": "Gitter interacts with Git repositories with the latest version dependencies and PHP.",
"homepage": "https://github.com/patrikx3/gitter",
"keywords": [
"git",
"vcs"
],
- "time": "2018-02-23T15:06:53+00:00"
+ "time": "2018-02-23 17:16:32"
},
{
"name": "pimple/pimple",
@@ -214,7 +215,7 @@
"container",
"dependency injection"
],
- "time": "2018-01-21T07:42:36+00:00"
+ "time": "2018-01-21 07:42:36"
},
{
"name": "psr/container",
@@ -263,7 +264,7 @@
"container-interop",
"psr"
],
- "time": "2017-02-14T16:28:37+00:00"
+ "time": "2017-02-14 16:28:37"
},
{
"name": "psr/log",
@@ -310,20 +311,20 @@
"psr",
"psr-3"
],
- "time": "2016-10-10T12:19:37+00:00"
+ "time": "2016-10-10 12:19:37"
},
{
"name": "silex/silex",
- "version": "v2.2.2",
+ "version": "v2.2.3",
"source": {
"type": "git",
"url": "https://github.com/silexphp/Silex.git",
- "reference": "3fe50331f194c83ded2f824c47c1c24c20877a8c"
+ "reference": "90c80c3e5ef86c54b8769feca0320154c6e63f7c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/silexphp/Silex/zipball/3fe50331f194c83ded2f824c47c1c24c20877a8c",
- "reference": "3fe50331f194c83ded2f824c47c1c24c20877a8c",
+ "url": "https://api.github.com/repos/silexphp/Silex/zipball/90c80c3e5ef86c54b8769feca0320154c6e63f7c",
+ "reference": "90c80c3e5ef86c54b8769feca0320154c6e63f7c",
"shasum": ""
},
"require": {
@@ -399,20 +400,20 @@
"keywords": [
"microframework"
],
- "time": "2018-01-12T07:16:03+00:00"
+ "time": "2018-02-25 11:21:42"
},
{
"name": "symfony/debug",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
- "reference": "c77bb31d0f6310a2ac11e657475d396a92e5dc54"
+ "reference": "1721e4e7effb23480966690cdcdc7d2a4152d489"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/c77bb31d0f6310a2ac11e657475d396a92e5dc54",
- "reference": "c77bb31d0f6310a2ac11e657475d396a92e5dc54",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/1721e4e7effb23480966690cdcdc7d2a4152d489",
+ "reference": "1721e4e7effb23480966690cdcdc7d2a4152d489",
"shasum": ""
},
"require": {
@@ -455,20 +456,20 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
- "time": "2018-01-18T22:19:33+00:00"
+ "time": "2018-02-28 21:50:02"
},
{
"name": "symfony/event-dispatcher",
- "version": "v3.4.4",
+ "version": "v3.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca"
+ "reference": "58990682ac3fdc1f563b7e705452921372aad11d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26b87b6bca8f8f797331a30b76fdae5342dc26ca",
- "reference": "26b87b6bca8f8f797331a30b76fdae5342dc26ca",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/58990682ac3fdc1f563b7e705452921372aad11d",
+ "reference": "58990682ac3fdc1f563b7e705452921372aad11d",
"shasum": ""
},
"require": {
@@ -518,20 +519,20 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:37:34+00:00"
+ "time": "2018-02-14 10:03:57"
},
{
"name": "symfony/filesystem",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "760e47a4ee64b4c48f4b30017011e09d4c0f05ed"
+ "reference": "5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/760e47a4ee64b4c48f4b30017011e09d4c0f05ed",
- "reference": "760e47a4ee64b4c48f4b30017011e09d4c0f05ed",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21",
+ "reference": "5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21",
"shasum": ""
},
"require": {
@@ -567,20 +568,20 @@
],
"description": "Symfony Filesystem Component",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "time": "2018-02-22 10:50:29"
},
{
"name": "symfony/http-foundation",
- "version": "v3.4.4",
+ "version": "v3.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30"
+ "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30",
- "reference": "8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6f5935723c11b4125fc9927db6ad2feaa196e175",
+ "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175",
"shasum": ""
},
"require": {
@@ -621,20 +622,20 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "time": "2018-01-29T09:03:43+00:00"
+ "time": "2018-02-22 10:48:49"
},
{
"name": "symfony/http-kernel",
- "version": "v3.4.4",
+ "version": "v3.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "911d2e5dd4beb63caad9a72e43857de984301907"
+ "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/911d2e5dd4beb63caad9a72e43857de984301907",
- "reference": "911d2e5dd4beb63caad9a72e43857de984301907",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a443bbbd93682aa08e623fade4c94edd586ed2de",
+ "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de",
"shasum": ""
},
"require": {
@@ -646,7 +647,7 @@
},
"conflict": {
"symfony/config": "<2.8",
- "symfony/dependency-injection": "<3.4",
+ "symfony/dependency-injection": "<3.4.5|<4.0.5,>=4",
"symfony/var-dumper": "<3.3",
"twig/twig": "<1.34|<2.4,>=2"
},
@@ -660,7 +661,7 @@
"symfony/config": "~2.8|~3.0|~4.0",
"symfony/console": "~2.8|~3.0|~4.0",
"symfony/css-selector": "~2.8|~3.0|~4.0",
- "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/dependency-injection": "^3.4.5|^4.0.5",
"symfony/dom-crawler": "~2.8|~3.0|~4.0",
"symfony/expression-language": "~2.8|~3.0|~4.0",
"symfony/finder": "~2.8|~3.0|~4.0",
@@ -709,7 +710,7 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
- "time": "2018-01-29T12:29:46+00:00"
+ "time": "2018-03-05 19:41:07"
},
{
"name": "symfony/polyfill-mbstring",
@@ -768,7 +769,7 @@
"portable",
"shim"
],
- "time": "2018-01-30T19:27:44+00:00"
+ "time": "2018-01-30 19:27:44"
},
{
"name": "symfony/polyfill-php70",
@@ -827,20 +828,20 @@
"portable",
"shim"
],
- "time": "2018-01-30T19:27:44+00:00"
+ "time": "2018-01-30 19:27:44"
},
{
"name": "symfony/process",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "e1712002d81de6f39f854bc5bbd9e9f4bb6345b4"
+ "reference": "6ed08502a7c9559da8e60ea343bdbd19c3350b3e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/e1712002d81de6f39f854bc5bbd9e9f4bb6345b4",
- "reference": "e1712002d81de6f39f854bc5bbd9e9f4bb6345b4",
+ "url": "https://api.github.com/repos/symfony/process/zipball/6ed08502a7c9559da8e60ea343bdbd19c3350b3e",
+ "reference": "6ed08502a7c9559da8e60ea343bdbd19c3350b3e",
"shasum": ""
},
"require": {
@@ -876,20 +877,20 @@
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
- "time": "2018-01-29T09:06:29+00:00"
+ "time": "2018-02-19 12:18:43"
},
{
"name": "symfony/routing",
- "version": "v3.4.4",
+ "version": "v3.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "235d01730d553a97732990588407eaf6779bb4b2"
+ "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/235d01730d553a97732990588407eaf6779bb4b2",
- "reference": "235d01730d553a97732990588407eaf6779bb4b2",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8773a9d52715f1a579576ce0e60213de34f5ef3e",
+ "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e",
"shasum": ""
},
"require": {
@@ -954,20 +955,20 @@
"uri",
"url"
],
- "time": "2018-01-16T18:03:57+00:00"
+ "time": "2018-02-28 21:49:22"
},
{
"name": "symfony/twig-bridge",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/twig-bridge.git",
- "reference": "81260f5539bdd7a4b5c39c55e197dae6daecc33f"
+ "reference": "575004ae3bcfb7d909a34db20edb7c349defb092"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/81260f5539bdd7a4b5c39c55e197dae6daecc33f",
- "reference": "81260f5539bdd7a4b5c39c55e197dae6daecc33f",
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/575004ae3bcfb7d909a34db20edb7c349defb092",
+ "reference": "575004ae3bcfb7d909a34db20edb7c349defb092",
"shasum": ""
},
"require": {
@@ -976,7 +977,7 @@
},
"conflict": {
"symfony/console": "<3.4",
- "symfony/form": "<3.4"
+ "symfony/form": "<3.4.5|<4.0.5,>=4.0"
},
"require-dev": {
"symfony/asset": "~3.4|~4.0",
@@ -984,7 +985,7 @@
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/expression-language": "~3.4|~4.0",
"symfony/finder": "~3.4|~4.0",
- "symfony/form": "~3.4|~4.0",
+ "symfony/form": "^3.4.5|^4.0.5",
"symfony/http-foundation": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
"symfony/polyfill-intl-icu": "~1.0",
@@ -1044,20 +1045,20 @@
],
"description": "Symfony Twig Bridge",
"homepage": "https://symfony.com",
- "time": "2018-01-18T22:19:33+00:00"
+ "time": "2018-03-01 10:21:51"
},
{
"name": "twig/twig",
- "version": "v2.4.4",
+ "version": "v2.4.6",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
- "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb"
+ "reference": "d2117ec118c1ff3d28ccddca8212d82787a4809f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb",
- "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/d2117ec118c1ff3d28ccddca8212d82787a4809f",
+ "reference": "d2117ec118c1ff3d28ccddca8212d82787a4809f",
"shasum": ""
},
"require": {
@@ -1110,7 +1111,7 @@
"keywords": [
"templating"
],
- "time": "2017-09-27T18:10:31+00:00"
+ "time": "2018-03-03 16:23:01"
}
],
"packages-dev": [
@@ -1166,7 +1167,7 @@
"constructor",
"instantiate"
],
- "time": "2017-07-22T11:58:36+00:00"
+ "time": "2017-07-22 11:58:36"
},
{
"name": "myclabs/deep-copy",
@@ -1211,7 +1212,7 @@
"object",
"object graph"
],
- "time": "2017-10-19T19:58:43+00:00"
+ "time": "2017-10-19 19:58:43"
},
{
"name": "phar-io/manifest",
@@ -1266,7 +1267,7 @@
}
],
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
- "time": "2017-03-05T18:14:27+00:00"
+ "time": "2017-03-05 18:14:27"
},
{
"name": "phar-io/version",
@@ -1313,7 +1314,7 @@
}
],
"description": "Library for handling version information and constraints",
- "time": "2017-03-05T17:38:23+00:00"
+ "time": "2017-03-05 17:38:23"
},
{
"name": "phpdocumentor/reflection-common",
@@ -1367,7 +1368,7 @@
"reflection",
"static analysis"
],
- "time": "2017-09-11T18:02:19+00:00"
+ "time": "2017-09-11 18:02:19"
},
{
"name": "phpdocumentor/reflection-docblock",
@@ -1418,7 +1419,7 @@
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
- "time": "2017-11-30T07:14:17+00:00"
+ "time": "2017-11-30 07:14:17"
},
{
"name": "phpdocumentor/type-resolver",
@@ -1465,7 +1466,7 @@
"email": "me@mikevanriel.com"
}
],
- "time": "2017-07-14T14:27:02+00:00"
+ "time": "2017-07-14 14:27:02"
},
{
"name": "phpspec/prophecy",
@@ -1528,7 +1529,7 @@
"spy",
"stub"
],
- "time": "2018-02-19T10:16:54+00:00"
+ "time": "2018-02-19 10:16:54"
},
{
"name": "phpunit/php-code-coverage",
@@ -1591,7 +1592,7 @@
"testing",
"xunit"
],
- "time": "2018-02-02T07:01:41+00:00"
+ "time": "2018-02-02 07:01:41"
},
{
"name": "phpunit/php-file-iterator",
@@ -1638,7 +1639,7 @@
"filesystem",
"iterator"
],
- "time": "2017-11-27T13:52:08+00:00"
+ "time": "2017-11-27 13:52:08"
},
{
"name": "phpunit/php-text-template",
@@ -1679,7 +1680,7 @@
"keywords": [
"template"
],
- "time": "2015-06-21T13:50:34+00:00"
+ "time": "2015-06-21 13:50:34"
},
{
"name": "phpunit/php-timer",
@@ -1728,7 +1729,7 @@
"keywords": [
"timer"
],
- "time": "2018-02-01T13:07:23+00:00"
+ "time": "2018-02-01 13:07:23"
},
{
"name": "phpunit/php-token-stream",
@@ -1777,20 +1778,20 @@
"keywords": [
"tokenizer"
],
- "time": "2018-02-01T13:16:43+00:00"
+ "time": "2018-02-01 13:16:43"
},
{
"name": "phpunit/phpunit",
- "version": "7.0.1",
+ "version": "7.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "316555dbd0ed4097bbdd17c65ab416bf27a472e9"
+ "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316555dbd0ed4097bbdd17c65ab416bf27a472e9",
- "reference": "316555dbd0ed4097bbdd17c65ab416bf27a472e9",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
+ "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
"shasum": ""
},
"require": {
@@ -1857,7 +1858,7 @@
"testing",
"xunit"
],
- "time": "2018-02-13T06:08:08+00:00"
+ "time": "2018-02-26 07:03:12"
},
{
"name": "phpunit/phpunit-mock-objects",
@@ -1913,7 +1914,7 @@
"mock",
"xunit"
],
- "time": "2018-02-15T05:27:38+00:00"
+ "time": "2018-02-15 05:27:38"
},
{
"name": "sebastian/code-unit-reverse-lookup",
@@ -1958,7 +1959,7 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "time": "2017-03-04T06:30:41+00:00"
+ "time": "2017-03-04 06:30:41"
},
{
"name": "sebastian/comparator",
@@ -2022,7 +2023,7 @@
"compare",
"equality"
],
- "time": "2018-02-01T13:46:46+00:00"
+ "time": "2018-02-01 13:46:46"
},
{
"name": "sebastian/diff",
@@ -2078,7 +2079,7 @@
"unidiff",
"unified diff"
],
- "time": "2018-02-01T13:45:15+00:00"
+ "time": "2018-02-01 13:45:15"
},
{
"name": "sebastian/environment",
@@ -2128,7 +2129,7 @@
"environment",
"hhvm"
],
- "time": "2017-07-01T08:51:00+00:00"
+ "time": "2017-07-01 08:51:00"
},
{
"name": "sebastian/exporter",
@@ -2195,7 +2196,7 @@
"export",
"exporter"
],
- "time": "2017-04-03T13:19:02+00:00"
+ "time": "2017-04-03 13:19:02"
},
{
"name": "sebastian/global-state",
@@ -2246,7 +2247,7 @@
"keywords": [
"global state"
],
- "time": "2017-04-27T15:39:26+00:00"
+ "time": "2017-04-27 15:39:26"
},
{
"name": "sebastian/object-enumerator",
@@ -2293,7 +2294,7 @@
],
"description": "Traverses array structures and object graphs to enumerate all referenced objects",
"homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "time": "2017-08-03T12:35:26+00:00"
+ "time": "2017-08-03 12:35:26"
},
{
"name": "sebastian/object-reflector",
@@ -2338,7 +2339,7 @@
],
"description": "Allows reflection of object attributes, including inherited and non-public ones",
"homepage": "https://github.com/sebastianbergmann/object-reflector/",
- "time": "2017-03-29T09:07:27+00:00"
+ "time": "2017-03-29 09:07:27"
},
{
"name": "sebastian/recursion-context",
@@ -2391,7 +2392,7 @@
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2017-03-03T06:23:57+00:00"
+ "time": "2017-03-03 06:23:57"
},
{
"name": "sebastian/resource-operations",
@@ -2433,7 +2434,7 @@
],
"description": "Provides a list of PHP built-in functions that operate on resources",
"homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "time": "2015-07-28T20:34:47+00:00"
+ "time": "2015-07-28 20:34:47"
},
{
"name": "sebastian/version",
@@ -2476,11 +2477,11 @@
],
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
"homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-10-03T07:35:21+00:00"
+ "time": "2016-10-03 07:35:21"
},
{
"name": "symfony/browser-kit",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/browser-kit.git",
@@ -2533,20 +2534,20 @@
],
"description": "Symfony BrowserKit Component",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "time": "2018-01-03 07:38:00"
},
{
"name": "symfony/css-selector",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "f97600434e3141ef3cbb9ea42cf500fba88022b7"
+ "reference": "c69f1e93aa898fd9fec627ebef467188151c8dc2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/f97600434e3141ef3cbb9ea42cf500fba88022b7",
- "reference": "f97600434e3141ef3cbb9ea42cf500fba88022b7",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/c69f1e93aa898fd9fec627ebef467188151c8dc2",
+ "reference": "c69f1e93aa898fd9fec627ebef467188151c8dc2",
"shasum": ""
},
"require": {
@@ -2586,20 +2587,20 @@
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "time": "2018-02-03 14:58:37"
},
{
"name": "symfony/dom-crawler",
- "version": "v4.0.4",
+ "version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "39b785e1cf28e9f21bb601a5d62c4992a8e8a290"
+ "reference": "26726ddc01601dc9393f2afc3369ce1ca64e4537"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/39b785e1cf28e9f21bb601a5d62c4992a8e8a290",
- "reference": "39b785e1cf28e9f21bb601a5d62c4992a8e8a290",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/26726ddc01601dc9393f2afc3369ce1ca64e4537",
+ "reference": "26726ddc01601dc9393f2afc3369ce1ca64e4537",
"shasum": ""
},
"require": {
@@ -2642,7 +2643,7 @@
],
"description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com",
- "time": "2018-01-03T07:38:00+00:00"
+ "time": "2018-02-22 10:50:29"
},
{
"name": "theseer/tokenizer",
@@ -2682,7 +2683,7 @@
}
],
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
- "time": "2017-04-07T12:08:54+00:00"
+ "time": "2017-04-07 12:08:54"
},
{
"name": "webmozart/assert",
@@ -2732,7 +2733,7 @@
"check",
"validate"
],
- "time": "2018-01-29T19:49:41+00:00"
+ "time": "2018-01-29 19:49:41"
}
],
"aliases": [],
diff --git a/package.json b/package.json
index 86e075d1..5b1b18b5 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"type": "p3x"
},
"description": "P3X Gitlist",
- "version": "1.0.2",
+ "version": "1.0.3",
"main": "index.js",
"repository": "https://github.com/patrikx3/gitlist",
"author": "patrikx3
- Total bytes: {{ stats.size }} bytes ({{ ((stats.size / 1024) / 1024) | number_format }} MB) + + Total bytes: {{ stats.size }} bytes ({{ stats.size | format_size }})