diff --git a/dist/arch/PKGBUILD b/dist/arch/PKGBUILD
index 9b49ec14..44c78a52 100644
--- a/dist/arch/PKGBUILD
+++ b/dist/arch/PKGBUILD
@@ -1,6 +1,6 @@
 # Maintainer: J. King <jking@jkingweb.ca>
 pkgname="arsse"
-pkgver=0.10.4
+pkgver=0.11.0
 pkgrel=1
 epoch=
 pkgdesc="Multi-protocol RSS/Atom newsfeed synchronization server"
diff --git a/dist/arch/PKGBUILD-git b/dist/arch/PKGBUILD-git
index a1baf566..bcf8833f 100644
--- a/dist/arch/PKGBUILD-git
+++ b/dist/arch/PKGBUILD-git
@@ -1,6 +1,6 @@
 # Maintainer: J. King <jking@jkingweb.ca>
 pkgname="arsse-git"
-pkgver=0.10.4
+pkgver=0.11.0
 pkgrel=1
 epoch=
 pkgdesc="Multi-protocol RSS/Atom newsfeed synchronization server, bugfix-testing version"
@@ -9,7 +9,7 @@ url="https://thearsse.com/"
 license=("MIT")
 provides=("arsse")
 conflicts=("arsse")
-depends=("php-interpreter>=7.3" "php-intl-interpreter>=7.3" "php-sqlite-interpreter>=7.3")
+depends=()
 makedepends=("composer")
 checkdepends=()
 optdepends=("nginx: HTTP server"
@@ -39,9 +39,9 @@ pkgver() {
 
 build() {
     cd "$srcdir/arsse"
-    composer install
+    composer install --ignore-platform-reqs
     ./robo manual
-    composer install --no-dev -o --no-scripts
+    composer install --ignore-platform-reqs   --no-dev -o --no-scripts
     php arsse.php conf save-defaults config.defaults.php
     rm -r vendor/bin
 }
diff --git a/lib/Lang.php b/lib/Lang.php
index c437a25a..bc45c57b 100644
--- a/lib/Lang.php
+++ b/lib/Lang.php
@@ -132,7 +132,7 @@ class Lang {
 
     protected function checkRequirements(): bool {
         if (!extension_loaded("intl")) {
-            throw new ExceptionFatal("The \"Intl\" extension is required, but not loaded"); // @codeCoverageIgnore
+            throw new ExceptionFatal("The \"intl\" PHP extension is not installed or not enabled"); // @codeCoverageIgnore
         }
         $this->requirementsMet = true;
         return true;