-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "excell-mobility/broadcasting-service",
"description": "Sends the messages!",
"type": "project",
"homepage": "https://www.excell-mobility.de",
"authors": [
{
"name": "André Rademacher",
"role": "Lead Developer"
}
],
"license": "Apache-2.0",
"require": {
"php": "~7.1",
"zendframework/zend-expressive": "~1.1",
"zendframework/zend-expressive-helpers": "~2.2",
"zendframework/zend-log": "~2.9",
"zendframework/zend-stdlib": "~3.1",
"zendframework/zend-expressive-fastroute": "~1.3",
"zendframework/zend-servicemanager": "~3.2",
"zendframework/zend-expressive-zendviewrenderer": "~1.2",
"guzzlehttp/guzzle": "~6.2",
"lcobucci/jwt": "~3.2",
"los/api-problem": "~1.0",
"los/loslog": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"filp/whoops": "~2.1"
},
"autoload": {
"psr-4": {
"Broadcasting\\": "src/Broadcasting/"
}
},
"autoload-dev": {
"psr-4": {
"BroadcastingTest\\": "test/BroadcastingTest/"
}
},
"scripts": {
"test": "phpunit --colors=always"
}
}