Skip to content

Commit 7335165

Browse files
committed
Bump dependencies for Laravel 12
1 parent 3b39926 commit 7335165

File tree

1 file changed

+93
-87
lines changed

1 file changed

+93
-87
lines changed

composer.json

Lines changed: 93 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,96 @@
11
{
2-
"name": "bavix/laravel-wallet",
3-
"description": "It's easy to work with a virtual wallet.",
4-
"keywords": [
5-
"laravel",
6-
"credits",
7-
"bavix",
8-
"currency",
9-
"laravel-wallet",
10-
"laravel-package",
11-
"virtual",
12-
"wallet",
13-
"payments"
14-
],
15-
"minimum-stability": "stable",
16-
"homepage": "https://bavix.github.io/laravel-wallet/",
17-
"license": "MIT",
18-
"authors": [
19-
{
20-
"name": "Babichev Maxim",
21-
"email": "[email protected]"
2+
"name": "bavix/laravel-wallet",
3+
"description": "It's easy to work with a virtual wallet.",
4+
"keywords": [
5+
"laravel",
6+
"credits",
7+
"bavix",
8+
"currency",
9+
"laravel-wallet",
10+
"laravel-package",
11+
"virtual",
12+
"wallet",
13+
"payments"
14+
],
15+
"minimum-stability": "stable",
16+
"homepage": "https://bavix.github.io/laravel-wallet/",
17+
"license": "MIT",
18+
"authors": [
19+
{
20+
"name": "Babichev Maxim",
21+
"email": "[email protected]"
22+
}
23+
],
24+
"require": {
25+
"php": "^8.2",
26+
"ext-json": "*",
27+
"ext-pdo": "*",
28+
"brick/math": "~0.10",
29+
"illuminate/contracts": "^11.0|^12.0",
30+
"illuminate/database": "^11.0|^12.0",
31+
"ramsey/uuid": "^4.0"
32+
},
33+
"require-dev": {
34+
"driftingly/rector-laravel": "^1.0|^2.0",
35+
"ergebnis/phpstan-rules": "^2.1",
36+
"infection/infection": "~0.27",
37+
"larastan/larastan": "^2.8",
38+
"laravel/cashier": "^15.0",
39+
"nunomaduro/collision": "^8.0",
40+
"orchestra/testbench": "^9.0|^10.0",
41+
"phpstan/phpstan": "^1.10|^2.1",
42+
"phpunit/phpunit": "^11.0",
43+
"rector/rector": "^1.0|^2.0",
44+
"symplify/easy-coding-standard": "^12.1"
45+
},
46+
"suggest": {
47+
"bavix/laravel-wallet-swap": "Addition to the laravel-wallet library for quick setting of exchange rates",
48+
"bavix/laravel-wallet-uuid": "Addition to the laravel-wallet library uuid support in laravel-wallet",
49+
"bavix/laravel-wallet-warmup": "Addition to the laravel-wallet library for refresh balance wallets"
50+
},
51+
"autoload": {
52+
"psr-4": {
53+
"Bavix\\Wallet\\": "src/"
54+
}
55+
},
56+
"autoload-dev": {
57+
"psr-4": {
58+
"Bavix\\Wallet\\Test\\": "tests/"
59+
}
60+
},
61+
"scripts": {
62+
"parabench": "@php ./vendor/bin/testbench package:test --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
63+
"infect": "@php vendor/bin/infection --coverage=build --min-msi=50 -j$(nproc) --only-covering-test-cases",
64+
"phpstan": [
65+
"@phpstan-src",
66+
"@phpstan-tests"
67+
],
68+
"phpstan-src": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.src.neon",
69+
"phpstan-tests": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.tests.neon",
70+
"phpstan-baseline": [
71+
"@phpstan-baseline-src",
72+
"@phpstan-baseline-tests"
73+
],
74+
"phpstan-baseline-src": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.src.neon --generate-baseline phpstan.src.baseline.neon",
75+
"phpstan-baseline-tests": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.tests.neon --generate-baseline phpstan.tests.baseline.neon",
76+
"ecs": "@php vendor/bin/ecs check",
77+
"ecs-fix": "@php vendor/bin/ecs check --fix",
78+
"ecs-cc": "@php vendor/bin/ecs --clear-cache",
79+
"rector": "@php vendor/bin/rector process --dry-run",
80+
"rector-fix": "@php vendor/bin/rector process"
81+
},
82+
"extra": {
83+
"laravel": {
84+
"providers": [
85+
"Bavix\\Wallet\\WalletServiceProvider"
86+
]
87+
}
88+
},
89+
"config": {
90+
"process-timeout": 0,
91+
"sort-packages": true,
92+
"allow-plugins": {
93+
"infection/extension-installer": true
94+
}
2295
}
23-
],
24-
"require": {
25-
"php": "^8.2",
26-
"ext-json": "*",
27-
"ext-pdo": "*",
28-
"brick/math": "~0.10",
29-
"illuminate/contracts": "^11.0",
30-
"illuminate/database": "^11.0",
31-
"ramsey/uuid": "^4.0"
32-
},
33-
"require-dev": {
34-
"driftingly/rector-laravel": "^1.0",
35-
"ergebnis/phpstan-rules": "^2.1",
36-
"infection/infection": "~0.27",
37-
"larastan/larastan": "^2.8",
38-
"laravel/cashier": "^15.0",
39-
"nunomaduro/collision": "^8.0",
40-
"orchestra/testbench": "^9.0",
41-
"phpstan/phpstan": "^1.10",
42-
"phpunit/phpunit": "^11.0",
43-
"rector/rector": "^1.0",
44-
"symplify/easy-coding-standard": "^12.1"
45-
},
46-
"suggest": {
47-
"bavix/laravel-wallet-swap": "Addition to the laravel-wallet library for quick setting of exchange rates",
48-
"bavix/laravel-wallet-uuid": "Addition to the laravel-wallet library uuid support in laravel-wallet",
49-
"bavix/laravel-wallet-warmup": "Addition to the laravel-wallet library for refresh balance wallets"
50-
},
51-
"autoload": {
52-
"psr-4": {
53-
"Bavix\\Wallet\\": "src/"
54-
}
55-
},
56-
"autoload-dev": {
57-
"psr-4": {
58-
"Bavix\\Wallet\\Test\\": "tests/"
59-
}
60-
},
61-
"scripts": {
62-
"parabench":"@php ./vendor/bin/testbench package:test --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
63-
"infect": "@php vendor/bin/infection --coverage=build --min-msi=50 -j$(nproc) --only-covering-test-cases",
64-
"phpstan": ["@phpstan-src", "@phpstan-tests"],
65-
"phpstan-src": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.src.neon",
66-
"phpstan-tests": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.tests.neon",
67-
"phpstan-baseline": ["@phpstan-baseline-src", "@phpstan-baseline-tests"],
68-
"phpstan-baseline-src": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.src.neon --generate-baseline phpstan.src.baseline.neon",
69-
"phpstan-baseline-tests": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.tests.neon --generate-baseline phpstan.tests.baseline.neon",
70-
"ecs": "@php vendor/bin/ecs check",
71-
"ecs-fix": "@php vendor/bin/ecs check --fix",
72-
"ecs-cc": "@php vendor/bin/ecs --clear-cache",
73-
"rector": "@php vendor/bin/rector process --dry-run",
74-
"rector-fix": "@php vendor/bin/rector process"
75-
},
76-
"extra": {
77-
"laravel": {
78-
"providers": [
79-
"Bavix\\Wallet\\WalletServiceProvider"
80-
]
81-
}
82-
},
83-
"config": {
84-
"process-timeout":0,
85-
"sort-packages": true,
86-
"allow-plugins": {
87-
"infection/extension-installer": true
88-
}
89-
}
9096
}

0 commit comments

Comments
 (0)