generated from spaceemotion/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.31 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
{
"name": "spaceemotion/laravel-event-sourcing",
"type": "library",
"description": "Opiniated event sourcing framework for Laravel optimized for speed and type safety.",
"keywords": ["laravel","ddd","aggregate","events","event store","event sourcing"],
"homepage": "https://github.com/spaceemotion/laravel-event-sourcing",
"license": "ISC",
"authors": [
{
"name": "spaceemotion",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/spaceemotion/laravel-event-sourcing/issues"
},
"require": {
"php": "^7.4",
"ext-json": "*",
"illuminate/support": "^7.0",
"nesbot/carbon": "^2.28"
},
"require-dev": {
"aws/aws-sdk-php": "^3.117",
"escapestudios/symfony2-coding-standard": "^3.9.2",
"nunomaduro/larastan": "^0.5",
"orchestra/testbench": "^5.0",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-mockery": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.0",
"slevomat/coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"Spaceemotion\\LaravelEventSourcing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spaceemotion\\LaravelEventSourcing\\Tests\\": "tests"
}
},
"suggest": {
"aws/aws-sdk-php": "Allows using DynamoDB as event store"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"coverage:clover": "phpdbg -qrr vendor/phpunit/phpunit/phpunit --coverage-clover build/coverage.xml",
"coverage:html": "phpdbg -qrr vendor/phpunit/phpunit/phpunit --coverage-html build/coverage-report",
"lint:style": "phpcs",
"lint:analyse": "phpstan analyse",
"lint:mess": "phpmd config,src,tests text phpmd.xml",
"lint": [
"@lint:style",
"@lint:analyse"
],
"fix:style": "phpcbf",
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spaceemotion\\LaravelEventSourcing\\ServiceProvider"
]
}
}
}