-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·100 lines (100 loc) · 2.98 KB
/
composer.json
File metadata and controls
executable file
·100 lines (100 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "inanepain/http",
"description": "Http client (psr-18), request and response object message interfaces (psr-7).",
"type": "library",
"license": "Unlicense",
"homepage": "https://github.com/inanepain/http",
"readme": "README.adoc",
"authors": [
{
"name": "Philip Michael Raab",
"email": "philip@cathedral.co.za",
"role": "Developer"
}
],
"support": {
"email": "philip@cathedral.co.za",
"issues": "https://github.com/inanepain/http/issues"
},
"keywords": [
"inane",
"inanepain",
"library",
"http",
"client",
"request",
"response",
"serve",
"psr-7",
"psr-18"
],
"autoload": {
"psr-4": {
"Inane\\Http\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"discard-changes": true,
"sort-packages": true
},
"minimum-stability": "dev",
"require": {
"php": ">=8.4",
"ext-curl": "*",
"ext-fileinfo": "*",
"psr/http-message": "*",
"psr/http-client": "*",
"inanepain/file": ">=0.3.0 || dev-master || dev-develop",
"inanepain/stdlib": ">=0.6.0 || dev-master || dev-develop"
},
"require-dev": {},
"scripts": {
"mk-doc-dir": [
"mkdir -p doc/{changelog,readme}",
"mkdir -p doc/changelog/release",
"mkdir -p doc/readme/part",
"touch doc/{changelog,readme}/index.adoc",
"touch doc/changelog/release/0.0.0.adoc",
"touch doc/readme/part/install.adoc"
],
"build": [
"echo \"Library: inanepain/$(basename $(pwd))\"",
"echo build: all...",
"@build-changelog",
"@build-readme",
"echo build: done!"
],
"build-win": [
"@build-changelog-win",
"@build-readme-win"
],
"build-changelog": [
"echo building: changelog...",
"rm -f CHANGELOG.adoc",
"asciidoctor-reducer -o CHANGELOG.adoc doc/changelog/index.adoc",
"asciidoctor -b docbook CHANGELOG.adoc",
"rm -f CHANGELOG.xml"
],
"build-changelog-win": [
"del CHANGELOG.adoc",
"asciidoctor-reducer -o CHANGELOG.adoc doc/changelog/index.adoc",
"asciidoctor -b docbook CHANGELOG.adoc",
"del CHANGELOG.xml"
],
"build-readme": [
"echo building: readme...",
"rm -f README.adoc",
"asciidoctor-reducer -o README.adoc doc/readme/index.adoc",
"asciidoctor -b docbook README.adoc",
"rm -f README.xml"
],
"build-readme-win": [
"del README.adoc",
"asciidoctor-reducer -o README.adoc doc/readme/index.adoc",
"asciidoctor -b docbook README.adoc",
"del README.xml"
]
}
}