-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
68 lines (68 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ekinhbayar/gitamp",
"description": "Listen ambient music generated by events across github.",
"keywords": [
"audio",
"events",
"github",
"async",
"non-blocking"
],
"license": "MIT",
"authors": [
{
"name": "Ekin H. Bayar",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Pieter Hordijk",
"email": "[email protected]",
"homepage": "https://pieterhordijk.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-json": "*",
"amphp/amp": "^2",
"amphp/byte-stream": "^1.8",
"amphp/http": "^1.6",
"amphp/http-client": "^4.5",
"amphp/http-server": "^2.1",
"amphp/http-server-router": "^1.0",
"amphp/http-server-static-content": "^1.0.6",
"amphp/log": "^1.1",
"amphp/socket": "^1.1",
"amphp/websocket": "^1.0",
"amphp/websocket-server": "^2.0",
"daverandom/exceptional-json": "^1.0.4",
"league/uri": "^6.3",
"league/uri-interfaces": "^2.1",
"monolog/monolog": "^2",
"nikic/fast-route": "^1",
"psr/log": "^1"
},
"require-dev": {
"matthiasmullie/minify": "^1.3",
"object-calisthenics/phpcs-calisthenics-rules": "^3.7",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.0@dev",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"ekinhbayar\\GitAmp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ekinhbayar\\GitAmpTests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}