-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 2.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "bavix/laravel-wallet-uuid",
"description": "Addition to the package laravel-wallet.",
"keywords": [
"uuid",
"laravel",
"credits",
"bavix",
"command",
"laravel-wallet",
"virtual",
"wallet",
"payments"
],
"minimum-stability": "stable",
"homepage": "https://github.com/bavix/laravel-wallet",
"license": "MIT",
"authors": [
{
"name": "Babichev Maxim",
"email": "info@babichev.net"
}
],
"require": {
"php": "^8.2",
"bavix/laravel-wallet": "^11.0"
},
"require-dev": {
"driftingly/rector-laravel": "^1.0",
"ergebnis/phpstan-rules": "^2.1",
"infection/infection": "~0.27",
"larastan/larastan": "^2.8",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.1"
},
"autoload": {
"psr-4": {
"Bavix\\WalletUuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bavix\\WalletUuid\\Test\\": "tests/",
"Bavix\\Wallet\\Test\\": "vendor/bavix/laravel-wallet/tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bavix\\WalletUuid\\WalletUuidServiceProvider"
]
}
},
"scripts": {
"parabench":"@php ./vendor/bin/testbench package:test --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
"infect": "@php vendor/bin/infection --coverage=build --min-msi=50 -j$(nproc) --only-covering-test-cases",
"phpstan": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.neon",
"phpstan-baseline": "@php vendor/bin/phpstan analyse -vvv --memory-limit 2G -c phpstan.neon --generate-baseline phpstan.baseline.neon",
"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,
"allow-plugins": {
"infection/extension-installer": true
}
}
}