-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.66 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.66 KB
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
{
"name": "akinoriakatsuka/event-store-adapter-php",
"description": "A example application for CQRS/Event Sourcing.",
"license": "MIT",
"type": "application",
"authors": [
{
"name": "Akinori Takigawa",
"email": "akinoriakatsuka@gmail.com"
},
{
"name": "Junichi Kato",
"email": "j5ik2o@gmail.com"
}
],
"require": {
"php": "^8.5",
"ext-pdo": "*",
"aws/aws-sdk-php": "^3.0",
"cweagans/composer-patches": "^1.7",
"j5ik2o/event-store-adapter-php": "^1.0",
"monolog/monolog": "^3.9",
"php-di/php-di": "^7.1",
"psr/log": "^3.0",
"robinvdvleuten/ulid": "^5.0",
"slim/psr7": "^1.6",
"slim/slim": "^4.0",
"vlucas/phpdotenv": "^5.6",
"webonyx/graphql-php": "^15.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"Akinoriakatsuka\\CqrsEsExamplePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --testdox",
"test:coverage": "phpunit --testdox --coverage-text --colors",
"test:coverage:html": "phpunit --testdox --coverage-html coverage",
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run --diff",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"fmt": "@cs:fix",
"phpstan": "phpstan analyse --memory-limit=2G",
"lint": ["@cs", "@phpstan"]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true
}
}
}