-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.59 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
{
"name": "swag-industries/drumkit",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"SwagIndustries\\MercureRouter\\": "src/",
"Amp\\Http\\Server\\":"lib/amphp/http-server-router/src/"
}
},
"autoload-dev": {
"psr-4": {
"SwagIndustries\\MercureRouter\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Nek (Maxime Veber)",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-ds": "*",
"ext-ctype": "*",
"ext-pcntl": "*",
"php-ds/php-ds": "^1.4",
"amphp/http-server": "^3.3.1",
"amphp/log": "^2.0",
"webmozart/assert": "^1.10",
"symfony/uid": "^6.0",
"amphp/http-server-form-parser": "^2.0",
"lcobucci/jwt": "^4.1",
"symfony/console": "^6.2",
"colinodell/json5": "^2.3.0",
"symfony/config": "^6.2",
"nekland/tools":"^2.6.2",
"nikic/fast-route": "^1.3.0",
"cspray/labrador-http-cors": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/http-client": "^6.0",
"symfony/var-dumper": "^6.0",
"symfony/mercure": "^0.6.0",
"symfony/mime": "^6.0",
"amphp/http-client": "^5.1",
"amphp/http-client-cookies": "^2.0.0",
"amphp/phpunit-util": "^3.0.0",
"phpspec/prophecy-phpunit": "^2.2.0",
"dg/bypass-finals": "dev-master",
"symfony/process": "^7.1"
},
"bin": [
"bin/drumkit"
]
}