-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.64 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
{
"name": "thinktomorrow/trader",
"description": "Generic logic for a Laravel shop app",
"keywords": [
"thinktomorrow",
"trader"
],
"homepage": "https://github.com/thinktomorrow/trader",
"license": "MIT",
"authors": [
{
"name": "Ben Cavens",
"email": "[email protected]"
}
],
"require": {
"php" : ">=8.2",
"moneyphp/money": "^4.3.0",
"beberlei/assert": "^3.3.2",
"ext-bcmath": "*",
"ext-intl": "*",
"psr/container": "^2.0.2",
"laravel/ui": "^4.2",
"thinktomorrow/vine": "^0.4.11",
"ramsey/uuid": "^4.7.3"
},
"require-dev": {
"phpunit/phpunit" : "^9.6.3",
"phpstan/phpstan": "^1.9.17",
"illuminate/database": "^9.0",
"orchestra/testbench": "^7.22.0",
"nesbot/carbon": "^2.66",
"qossmic/deptrac-shim": "^1.0.2",
"infection/infection": "^0.29.10"
},
"autoload": {
"psr-4": {
"Thinktomorrow\\Trader\\": "src/"
},
"classmap":[]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"src/helpers.php"
],
"classmap":[]
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Thinktomorrow\\Trader\\Infrastructure\\Laravel\\TraderServiceProvider",
"Thinktomorrow\\Trader\\Infrastructure\\Shop\\ShopServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}