-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.49 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "micro-module/base",
"type": "library",
"description": "Micro module Base common library",
"license": "proprietary",
"require": {
"php": "^8.4",
"ext-json": "*",
"ext-intl": "*",
"beberlei/assert": "^3.3",
"monolog/monolog": "^2.0 || ^3.0",
"open-telemetry/api": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"league/tactician": "^1.2",
"mockery/mockery": "^1.6",
"open-telemetry/exporter-otlp": "^1.0",
"open-telemetry/sdk": "^1.0",
"open-telemetry/sem-conv": "^1.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-mockery": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^10.0 || ^11.0",
"roave/security-advisories": "dev-latest",
"symfony/event-dispatcher": "^7.0",
"symfony/http-kernel": "^7.0",
"symplify/easy-coding-standard": "^12.0",
"vimeo/psalm": "^5.0 || ^6.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"MicroModule\\Base\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MicroModule\\Base\\Tests\\Unit\\": "tests/unit"
}
}
}