Skip to content

Commit

Permalink
Merge pull request #50 from bavix/w101
Browse files Browse the repository at this point in the history
add wallet 10.1.x
  • Loading branch information
rez1dent3 authored Dec 28, 2023
2 parents 11ff57c + ab3a477 commit a382f01
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/phpunits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down
53 changes: 53 additions & 0 deletions composer_10.1.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
}
],
"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
}
}

0 comments on commit a382f01

Please sign in to comment.