aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/snippets/favicons.php2
-rw-r--r--phpunit.xml8
2 files changed, 1 insertions, 9 deletions
diff --git a/app/views/snippets/favicons.php b/app/views/snippets/favicons.php
index 2d11bb5..424d2a3 100644
--- a/app/views/snippets/favicons.php
+++ b/app/views/snippets/favicons.php
@@ -1,7 +1,7 @@
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="data:image/png;base64,<?php echo base64('/public/favicon-32x32.png'); ?>">
<link rel="icon" type="image/png" sizes="16x16" href="data:image/png;base64,<?php echo base64('/public/favicon-16x16.png'); ?>">
- <link rel="manifest" href="/site.webmanifest">
+ <link rel="manifest" href="data:application/manifest+json;base64,<?php echo base64('/public/site.webmanifest'); ?>">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#b91d47">
<meta name="theme-color" content="#ffffff">
diff --git a/phpunit.xml b/phpunit.xml
deleted file mode 100644
index 005c645..0000000
--- a/phpunit.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<phpunit verbose="true">
- <php>
- <ini name="error_reporting" value="-1" />
- <ini name="display_errors" value="1" />
- <ini name="xdebug.scream" value="0" />
- </php>
-</phpunit>