mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 02:22:58 +00:00
:octocat: CI & dependency updates
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
/.build export-ignore
|
||||
/.github export-ignore
|
||||
/.idea export-ignore
|
||||
/.phan export-ignore
|
||||
/.phpdoc export-ignore
|
||||
/docs export-ignore
|
||||
|
||||
@@ -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
|
||||
|
||||
Generated
+6
@@ -295,8 +295,14 @@
|
||||
<option name="ALIGN_PHPDOC_PARAM_NAMES" value="true" />
|
||||
<option name="ALIGN_PHPDOC_COMMENTS" value="true" />
|
||||
<option name="ALIGN_ASSIGNMENTS" value="true" />
|
||||
<option name="ALIGN_NAMED_ARGUMENTS" value="true" />
|
||||
<option name="ALIGN_MATCH_ARM_BODIES" value="true" />
|
||||
<option name="CONCAT_SPACES" value="false" />
|
||||
<option name="COMMA_AFTER_LAST_ARRAY_ELEMENT" value="true" />
|
||||
<option name="COMMA_AFTER_LAST_PARAMETER" value="true" />
|
||||
<option name="COMMA_AFTER_LAST_CLOSURE_USE_VAR" value="true" />
|
||||
<option name="COMMA_AFTER_LAST_ARGUMENT" value="true" />
|
||||
<option name="COMMA_AFTER_LAST_MATCH_ARM" value="true" />
|
||||
<option name="PHPDOC_BLANK_LINE_BEFORE_TAGS" value="true" />
|
||||
<option name="PHPDOC_BLANK_LINES_AROUND_PARAMETERS" value="true" />
|
||||
<option name="PHPDOC_WRAP_LONG_LINES" value="true" />
|
||||
|
||||
+3
-3
@@ -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"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||
bootstrap="vendor/autoload.php"
|
||||
cacheDirectory=".build/phpunit-cache"
|
||||
colors="true"
|
||||
|
||||
Reference in New Issue
Block a user