Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add wallet 10.1.x #50

Merged
merged 1 commit into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
Loading