-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.1 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "era269/message-processor",
"type": "library",
"description": "Functionality of automated method choosing for message processing",
"keywords": ["OOP","DDD","Message"],
"license": "MIT",
"prefer-stable": true,
"require": {
"php": "^8.0|^7.2",
"cache/array-adapter": "^1.1",
"era269/method-map": "^0.1.0",
"psr/event-dispatcher": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.85",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpunit/phpunit": "^9.5"
},
"authors": [
{
"name": "Yuriy Antonuyk",
"email": "era269@ukr.net"
}
],
"config": {
"platform": {
"php": "8.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Era269\\MessageProcessor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Era269\\MessageProcessor\\Tests\\": "tests"
}
}
}