From ab3a477f2a3610ba4216df357f0153f27a40062e Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Thu, 28 Dec 2023 11:47:28 +0300 Subject: [PATCH] add wallet 10.1.x --- .github/workflows/phpunits.yaml | 2 +- composer_10.1.json | 53 +++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 composer_10.1.json diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index e94105a..7949155 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - wallet-versions: [ "10.0", 9.6, 9.5, 9.4, 9.3, 9.2, 8.4, 7.3 ] + wallet-versions: [ 10.1, "10.0", 9.6, 9.5, 9.4, 8.4, 7.3 ] php-versions: [ 8.3 ] databases: [ pgsql, mysql ] caches: [ redis, memcached ] diff --git a/composer_10.1.json b/composer_10.1.json new file mode 100644 index 0000000..7531f1d --- /dev/null +++ b/composer_10.1.json @@ -0,0 +1,53 @@ +{ + "name": "bavix/laravel-wallet-benchmark", + "description": "Testing performance laravel-wallet from version to version.", + "keywords": [ + "benchmark", + "laravel", + "bavix", + "command", + "laravel-wallet", + "virtual", + "wallet", + "payments" + ], + "minimum-stability": "stable", + "homepage": "https://github.com/bavix/laravel-wallet-benchmark", + "license": "MIT", + "authors": [ + { + "name": "Babichev Maxim", + "email": "info@babichev.net" + } + ], + "require": { + "php": "^8.1", + "bavix/laravel-wallet": "10.1.*" + }, + "require-dev": { + "brianium/paratest": "^7.0", + "nunomaduro/collision": "^7.0", + "orchestra/testbench": "^v8.0", + "phpunit/phpunit": "^10.0", + "rector/rector": "^0.12.5", + "symplify/easy-coding-standard": "^10.0" + }, + "autoload": { + "psr-4": { + "Bavix\\WalletBench\\Test\\": "tests/" + } + }, + "scripts": { + "unit":"@php vendor/bin/phpunit --coverage-xml=build/coverage-xml --log-junit=build/junit.xml", + "paraunit":"@php vendor/bin/paratest --coverage-xml=build/coverage-xml --log-junit=build/junit.xml", + "parabench":"@php ./vendor/bin/testbench package:test --coverage-xml=build/coverage-xml --log-junit=build/junit.xml", + "ecs": "@php vendor/bin/ecs check", + "ecs-fix": "@php vendor/bin/ecs check --fix", + "ecs-cc": "@php vendor/bin/ecs --clear-cache", + "rector": "@php vendor/bin/rector process --dry-run", + "rector-fix": "@php vendor/bin/rector process" + }, + "config": { + "sort-packages": true + } +}