diff --git a/.gitattributes b/.gitattributes
index 8add556f5..e2090ce38 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,5 +1,6 @@
/.build export-ignore
/.github export-ignore
+/.idea export-ignore
/.phan export-ignore
/.phpdoc export-ignore
/docs export-ignore
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 75eb08712..67ba4e0bd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,7 +12,7 @@ on:
name: "Continuous Integration"
env:
- PHP_EXTENSIONS: ast, fileinfo, gd, imagick, json, mbstring
+ PHP_EXTENSIONS: fileinfo, gd, imagick, json, mbstring
PHP_INI_VALUES: memory_limit=-1, error_reporting=-1, display_errors=On
jobs:
@@ -40,10 +40,9 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- extensions: ${{ env.PHP_EXTENSIONS }}
+ extensions: ast, ${{ env.PHP_EXTENSIONS }}
ini-values: ${{ env.PHP_INI_VALUES }}
coverage: none
- tools: pecl
- name: "Install dependencies with composer"
uses: ramsey/composer-install@v3
diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index e618763df..0a882fcb2 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -295,8 +295,14 @@
+
+
+
+
+
+
diff --git a/composer.json b/composer.json
index 6320270a3..b7c56499a 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
{
"name": "chillerlan/php-qrcode",
- "description": "A QR code generator and reader with a user friendly API. PHP 8.2+",
+ "description": "A QR Code generator and reader with a user-friendly API. PHP 8.2+",
"homepage": "https://github.com/chillerlan/php-qrcode",
"license": [
"MIT", "Apache-2.0"
@@ -42,12 +42,12 @@
"require": {
"php": "^8.2",
"ext-mbstring": "*",
- "chillerlan/php-settings-container": "^3.1"
+ "chillerlan/php-settings-container": "^3.2"
},
"require-dev": {
"chillerlan/php-authenticator": "^5.1",
"phan/phan": "^5.4",
- "phpunit/phpunit": "^10.5",
+ "phpunit/phpunit": "^11.0",
"phpmd/phpmd": "^2.15",
"setasign/fpdf": "^1.8.2",
"squizlabs/php_codesniffer": "^3.9"
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index a2d91d5a1..d7187f13d 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -1,6 +1,6 @@