Skip to content

Commit dfb4ca9

Browse files
committed
:octocat: CI & dependency updates
1 parent 181e12c commit dfb4ca9

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.build export-ignore
22
/.github export-ignore
3+
/.idea export-ignore
34
/.phan export-ignore
45
/.phpdoc export-ignore
56
/docs export-ignore

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
name: "Continuous Integration"
1313

1414
env:
15-
PHP_EXTENSIONS: ast, fileinfo, gd, imagick, json, mbstring
15+
PHP_EXTENSIONS: fileinfo, gd, imagick, json, mbstring
1616
PHP_INI_VALUES: memory_limit=-1, error_reporting=-1, display_errors=On
1717

1818
jobs:
@@ -40,10 +40,9 @@ jobs:
4040
uses: shivammathur/setup-php@v2
4141
with:
4242
php-version: ${{ matrix.php-version }}
43-
extensions: ${{ env.PHP_EXTENSIONS }}
43+
extensions: ast, ${{ env.PHP_EXTENSIONS }}
4444
ini-values: ${{ env.PHP_INI_VALUES }}
4545
coverage: none
46-
tools: pecl
4746

4847
- name: "Install dependencies with composer"
4948
uses: ramsey/composer-install@v3

.idea/codeStyles/Project.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chillerlan/php-qrcode",
3-
"description": "A QR code generator and reader with a user friendly API. PHP 8.2+",
3+
"description": "A QR Code generator and reader with a user-friendly API. PHP 8.2+",
44
"homepage": "https://github.com/chillerlan/php-qrcode",
55
"license": [
66
"MIT", "Apache-2.0"
@@ -42,12 +42,12 @@
4242
"require": {
4343
"php": "^8.2",
4444
"ext-mbstring": "*",
45-
"chillerlan/php-settings-container": "^3.1"
45+
"chillerlan/php-settings-container": "^3.2"
4646
},
4747
"require-dev": {
4848
"chillerlan/php-authenticator": "^5.1",
4949
"phan/phan": "^5.4",
50-
"phpunit/phpunit": "^10.5",
50+
"phpunit/phpunit": "^11.0",
5151
"phpmd/phpmd": "^2.15",
5252
"setasign/fpdf": "^1.8.2",
5353
"squizlabs/php_codesniffer": "^3.9"

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
cacheDirectory=".build/phpunit-cache"
66
colors="true"

0 commit comments

Comments
 (0)