-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.57 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
{
"name": "cormy/server-request-handler-skeleton",
"type": "project",
"description": "Cormy Server RequestHandler skeleton/template",
"license": "MIT",
"keywords": [
"skeleton",
"template",
"cormy",
"server",
"request",
"handler",
"psr",
"psr-7",
"http",
"http-message",
"request",
"response"
],
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Cormy\\Server\\RequestHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cormy\\Server\\RequestHandler\\": "tests"
}
},
"require": {
"php": ">=7",
"psr/http-message": "^1.0",
"cormy/server-request-handler": "^0.1.0"
},
"require-dev": {
"sugared-rim/phpunit": "^2.0",
"vladahejda/phpunit-assert-exception": "^1.0",
"zendframework/zend-diactoros": "^1.3"
},
"scripts": {
"clean": "rm -rf build/ .php_cs.cache",
"doc": [
"sugared-sami",
"phpmetrics --report-html build/phpmetrics/index.html src/"
],
"lint": [
"sugared-rim-cs"
],
"test": [
"tests/usage.php",
"sugared-rim-phpunit",
"@lint"
],
"travis": [
"tests/usage.php",
"sugared-rim-phpunit"
],
"post-create-project-cmd": "php post-create-project-cmd.php"
}
}