forked from hirethunk/verbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
114 lines (109 loc) · 3.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hirethunk/verbs",
"description": "An event sourcing package that feels nice.",
"keywords": [
"hirethunk",
"laravel",
"event-sourcing",
"verbs"
],
"homepage": "https://github.com/kathunk/verbs",
"license": "MIT",
"authors": [
{
"name": "Thunk, Inc.",
"email": "[email protected]",
"role": "We build software for money. We also build it for fun."
}
],
"require": {
"php": ">=8.1",
"glhd/bits": "^0.4|^0.3",
"illuminate/contracts": "^10.0|^11.0",
"internachi/modular": "^2.0",
"laravel/prompts": "^0.1.15",
"spatie/laravel-package-tools": "^1.14.0",
"symfony/property-access": "^6.2|^7.0",
"symfony/serializer": "^6.3|^7.0"
},
"require-dev": {
"brick/money": "^0.8.1",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.10|^8.1",
"orchestra/testbench": "^8.14|^9.0",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-arch": "^2.4",
"pestphp/pest-plugin-laravel": "^2.2",
"pestphp/pest-plugin-watch": "^2.0",
"phpunit/phpunit": "^10.5",
"projektgopher/whisky": "^0.5.1"
},
"autoload": {
"psr-4": {
"Thunk\\Verbs\\": "src/",
"Thunk\\Verbs\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Thunk\\Verbs\\Tests\\": "tests/",
"Thunk\\Verbs\\Examples\\Counter\\": "examples/Counter/src/",
"Thunk\\Verbs\\Examples\\Counter\\Tests\\": "examples/Counter/tests/",
"Thunk\\Verbs\\Examples\\Counter\\Database\\Factories\\": "examples/Counter/database/factories/",
"Thunk\\Verbs\\Examples\\Bank\\": "examples/Bank/src/",
"Thunk\\Verbs\\Examples\\Bank\\Tests\\": "examples/Bank/tests/",
"Thunk\\Verbs\\Examples\\Bank\\Database\\Factories\\": "examples/Bank/database/factories/",
"Thunk\\Verbs\\Examples\\Subscriptions\\": "examples/Subscriptions/src/",
"Thunk\\Verbs\\Examples\\Subscriptions\\Tests\\": "examples/Subscriptions/tests/",
"Thunk\\Verbs\\Examples\\Subscriptions\\Database\\Factories\\": "examples/Subscriptions/database/factories/",
"Thunk\\Verbs\\Examples\\Monopoly\\": "examples/Monopoly/src/",
"Thunk\\Verbs\\Examples\\Monopoly\\Tests\\": "examples/Monopoly/tests/",
"Thunk\\Verbs\\Examples\\Monopoly\\Database\\Factories\\": "examples/Monopoly/database/factories/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"post-install-cmd": [
"whisky update"
],
"post-update-cmd": [
"whisky update"
],
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"@build",
"@php vendor/bin/testbench serve"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Thunk\\Verbs\\VerbsServiceProvider"
],
"aliases": {
"Verbs": "Thunk\\Verbs\\Facades\\Verbs"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}