-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.54 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
76
77
78
79
80
81
82
83
84
85
{
"name": "osteel/dime",
"description": "Calculate your cryptoasset taxes in the UK",
"keywords": ["crypto", "taxes", "hmrc", "php", "console", "cli"],
"homepage": "https://github.com/osteel/dime",
"type": "project",
"license": "AGPL-3.0-or-later",
"support": {
"issues": "https://github.com/osteel/dime/issues",
"source": "https://github.com/osteel/dime"
},
"authors": [
{
"name": "Yannick Chenot",
"email": "[email protected]",
"homepage": "https://github.com/osteel",
"role": "Maintainer"
}
],
"require": {
"php": "^8.2",
"ext-bcmath": "*"
},
"require-dev": {
"brick/date-time": "^0.5.1",
"eventsauce/eventsauce": "^3.4",
"eventsauce/message-repository-for-illuminate": "^1.0",
"eventsauce/object-hydrator": "^1.3",
"eventsauce/pest-utilities": "^3.4",
"fakerphp/faker": "^1.21.0",
"illuminate/console": "^10.17",
"illuminate/database": "^10.13",
"intonate/tinker-zero": "^1.2",
"laravel-zero/framework": "^10.0",
"laravel-zero/phar-updater": "^1.3",
"laravel/pint": "^1.6",
"laravel/prompts": "^0.1.5",
"mockery/mockery": "^1.5.1",
"nunomaduro/termwind": "^1.15",
"pestphp/pest": "^2.5",
"pestphp/pest-plugin-mock": "^2.0",
"phpoffice/phpspreadsheet": "^1.28",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10.6",
"rector/rector": "^0.18.0",
"tomasvotruba/type-coverage": "^0.2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Domain\\": "domain/src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Domain\\Tests\\": "domain/tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"pint": "pint",
"stan": "phpstan",
"test": "pest --coverage",
"all": [
"@pint",
"@stan",
"@test"
],
"rector": "rector process --dry-run"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/dime"]
}