-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
68 lines (68 loc) · 2.15 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": "woohoolabs/harmony",
"description": "Woohoo Labs. Harmony",
"type": "library",
"keywords": ["Woohoo Labs.", "Harmony", "Framework", "Middleware Dispatcher", "PSR-7", "PSR-11", "PSR-15"],
"license": "MIT",
"authors": [
{
"name": "Máté Kocsis",
"email": "kocsismate@woohoolabs.com"
}
],
"support": {
"issues": "https://github.com/woohoolabs/harmony/issues",
"source": "https://github.com/woohoolabs/harmony"
},
"require": {
"php": "^8.2.0",
"psr/container": "^1.1.0||^2.0.0",
"psr/http-message-implementation": "^1.0.0||^2.0.0",
"psr/http-server-handler": "^1.0.0",
"psr/http-server-middleware": "^1.0.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^3.0.0",
"laminas/laminas-httphandlerrunner": "^2.7.0",
"nikic/fast-route": "^1.0.0",
"phpstan/phpstan": "^1.12.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^11.3.3",
"squizlabs/php_codesniffer": "^3.7.0",
"woohoolabs/coding-standard": "^2.4.0",
"woohoolabs/releaser": "^1.2.0"
},
"suggest": {
"laminas/laminas-httphandlerrunner": "Allows to use the default HTTP response emitter middleware",
"nikic/fast-route": "Allows to use the default router middleware"
},
"provide": {
"psr/container-implementation": "^1.1||^2.0",
"psr/http-server-handler-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"WoohooLabs\\Harmony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoohooLabs\\Harmony\\Tests\\": "tests/",
"WoohooLabs\\Harmony\\Examples\\": "examples/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --level max src tests",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}