-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.82 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
{
"name": "hirethunk/verbs-history",
"description": "An event sourcing package that feels nice.",
"keywords": [
"hirethunk",
"laravel",
"event-sourcing",
"verbs",
"commands"
],
"homepage": "https://github.com/hirethunk/verbs-commands",
"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",
"hirethunk/verbs": "^0.5.1|^0.6|dev-main"
},
"require-dev": {
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.10",
"orchestra/testbench": "^8.14",
"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.4.2",
"projektgopher/whisky": "^0.5.1"
},
"autoload": {
"psr-4": {
"Thunk\\VerbsHistory\\": "src/",
"Thunk\\VerbsHistory\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Thunk\\VerbsHistory\\Tests\\": "tests/",
"Thunk\\VerbsHistory\\Examples\\Tasks\\": "examples/Tasks/src/",
"Thunk\\VerbsHistory\\Examples\\Tasks\\Tests\\": "examples/Tasks/tests/",
"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\\VerbsHistory\\VerbsHistoryServiceProvider"
],
"aliases": {
"Verbs": "Thunk\\VerbsHistory\\Facades\\Commands"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}