-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.03 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
{
"name": "patchlevel/laravel-event-sourcing",
"license": "MIT",
"description": "laravel package for patchlevel/event-sourcing",
"keywords": [
"event-sourcing",
"laravel"
],
"homepage": "https://github.com/patchlevel/laravel-event-sourcing",
"authors": [
{
"name": "Daniel Badura",
"email": "[email protected]"
},
{
"name": "David Badura",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"patchlevel/event-sourcing": "^3.5",
"illuminate/contracts": "^9.28|^10.0|^11.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"infection/infection": "^0.27.0",
"league/commonmark": "^2.4",
"patchlevel/coding-standard": "^1.3.0",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^1.10.48",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-laravel": "^2.11",
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^6.4.0|^7.0.0",
"vimeo/psalm": "^5.17.0",
"wnx/commonmark-markdown-renderer": "^1.4",
"larastan/larastan": "^v2.9.9",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\LaravelEventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\LaravelEventSourcing\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Patchlevel\\LaravelEventSourcing\\EventSourcingServiceProvider"
]
}
}
}