1
0
Fork 0
mirror of synced 2024-05-16 02:32:40 +12:00

fix: config

This commit is contained in:
Torsten Dittmann 2024-03-06 18:33:32 +01:00
parent 3ac8805b7d
commit 64a9126398
3 changed files with 14 additions and 11 deletions

View file

@ -12,8 +12,8 @@
], ],
"scripts": { "scripts": {
"test": "vendor/bin/phpunit", "test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs", "lint": "vendor/bin/pint --test",
"format": "vendor/bin/phpcbf" "format": "vendor/bin/pint"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -81,7 +81,6 @@
"ext-fileinfo": "*", "ext-fileinfo": "*",
"appwrite/sdk-generator": "0.37.0-rc.6", "appwrite/sdk-generator": "0.37.0-rc.6",
"phpunit/phpunit": "9.5.20", "phpunit/phpunit": "9.5.20",
"squizlabs/php_codesniffer": "^3.7",
"swoole/ide-helper": "5.0.2", "swoole/ide-helper": "5.0.2",
"textalk/websocket": "1.5.7", "textalk/websocket": "1.5.7",
"utopia-php/fetch": "0.1.*", "utopia-php/fetch": "0.1.*",

12
composer.lock generated
View file

@ -3144,16 +3144,16 @@
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v5.0.1", "version": "v5.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "2218c2252c874a4624ab2f613d86ac32d227bc69" "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/2218c2252c874a4624ab2f613d86ac32d227bc69", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
"reference": "2218c2252c874a4624ab2f613d86ac32d227bc69", "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3196,9 +3196,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nikic/PHP-Parser/issues", "issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v5.0.1" "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
}, },
"time": "2024-02-21T19:24:10+00:00" "time": "2024-03-05T20:51:40+00:00"
}, },
{ {
"name": "phar-io/manifest", "name": "phar-io/manifest",

View file

@ -8,10 +8,14 @@
"rules": { "rules": {
"array_indentation": true, "array_indentation": true,
"single_import_per_statement": true, "single_import_per_statement": true,
"use_arrow_functions": true,
"simplified_null_return": true, "simplified_null_return": true,
"ordered_imports": { "ordered_imports": {
"sort_algorithm": "alpha" "sort_algorithm": "alpha",
"imports_order": [
"const",
"class",
"function"
]
} }
} }
} }