-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.82 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "http-request-handler-interop/http-request-handler",
"description": "Common interfaces for HTTP Request Handler",
"keywords": [
"psr",
"psr-7",
"http",
"http-message",
"request",
"response",
"handler"
],
"license": "MIT",
"authors": [
{
"name": "Michael Mayer",
"email": "michael@schnittstabil.de"
}
],
"autoload": {
"psr-4": {
"Interop\\Http\\RequestHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Interop\\Http\\RequestHandler\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "php-fig/fig-standards",
"version": "0.1.0",
"source": {
"url": "git@github.com:http-request-handler-interop/fig-standards.git",
"type": "git",
"reference": "http-request-handler-0.1.0"
}
}
}
],
"require": {
"php": ">=5.6.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"league/commonmark": "^0.15.3",
"php-fig/fig-standards": "*"
},
"scripts": {
"bump": [
"php ./bin/bump.php latest"
],
"build": [
"@clean",
"php ./bin/build.php"
],
"clean": "rm -rf build/ src/* .php_cs.cache",
"lint": [
"sugared-rim-cs"
],
"test": [
"@travis",
"@lint"
],
"travis": [
"tests/smoke.php"
]
}
}