-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
composer.json
85 lines (85 loc) · 2.51 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": "spatie/laravel-event-sourcing",
"description": "The easiest way to get started with event sourcing in Laravel",
"keywords": [
"spatie",
"laravel-event-sourcing",
"event",
"sourcing",
"aggregates",
"projectors",
"reactors"
],
"homepage": "https://github.com/spatie/laravel-event-sourcing",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/events": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"phpdocumentor/reflection-docblock": "^5.2",
"spatie/better-types": "^0.2.0",
"spatie/laravel-package-tools": "^1.9",
"spatie/laravel-schemaless-attributes": "^2.0",
"symfony/finder": "^6.0|^7.0",
"symfony/polyfill-php82": "*",
"symfony/property-access": "^6.0|^7.0",
"symfony/property-info": "^6.0|^7.0",
"symfony/serializer": "^6.0|^7.0"
},
"require-dev": {
"laravel/horizon": "^5.7",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^1.22|^2.34",
"phpunit/phpunit": "^9.5.10|^10.5",
"spatie/fork": "^1.0",
"spatie/pest-plugin-snapshots": "^1.1|^2.1",
"spatie/phpunit-snapshot-assertions": "^4.0|^5.1"
},
"autoload": {
"psr-4": {
"Spatie\\EventSourcing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\EventSourcing\\Tests\\": "tests"
},
"files": [
"tests/TestClasses/AutoDiscoverEventHandlers/functions.php"
]
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\EventSourcing\\EventSourcingServiceProvider"
],
"aliases": {
"Projectionist": "Spatie\\EventSourcing\\Facades\\EventSourcing"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}