-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 944 Bytes
/
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
{
"name": "jimphle/messaging",
"type": "library",
"description": "Jimdo PHP library extraction of messaging component",
"keywords": ["messaging", "message-handler", "event-handler", "command-handler"],
"homepage": "https://github.com/Jimdo/jimphle-messaging",
"require": {
"ext-json": "*",
"php": "7.3 - 7.4",
"jimphle/data-structure": ">=0.5.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"mockery/mockery": "0.9.4",
"symfony/validator": "@stable",
"doctrine/common": "2.7.3"
},
"suggest": {
"pimple/pimple": "2.0.*@dev",
"symfony/validator": "@stable",
"doctrine/common": "@stable"
},
"autoload": {
"psr-0": {
"Jimphle\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Joscha",
"email": "joscha@schnipseljagd.org"
}
]
}