forked from woohoolabs/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.98 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.98 KB
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
{
"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": "^7.4.0",
"psr/container": "^1.0.0",
"psr/http-message-implementation": "^1.0.0",
"psr/http-server-handler": "^1.0.0",
"psr/http-server-middleware": "^1.0.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.0.0",
"laminas/laminas-httphandlerrunner": "^1.1.0",
"nikic/fast-route": "^1.0.0",
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-phpunit": "^0.12.0",
"phpstan/phpstan-strict-rules": "^0.12.0",
"phpunit/phpunit": "^8.3.4||^9.0.0",
"squizlabs/php_codesniffer": "^3.5.0",
"woohoolabs/coding-standard": "^2.1.1",
"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.0",
"psr/http-server-handler": "^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 7 src tests",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"sort-packages": true
}
}