-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 842 Bytes
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 842 Bytes
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
{
"name": "elementaryframework/water-pipe",
"description": "URL routing framework and requests/responses handler for PHP",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^7"
},
"license": "MIT",
"authors": [
{
"name": "Axel Nana",
"email": "ax.lnana@outlook.com"
}
],
"require": {
"php": "^7.1.10",
"ext-curl": "*",
"elementaryframework/events": "^0.0.1",
"elementaryframework/streams": "^0.0.2",
"fzaninotto/faker": "^1.9",
"vlucas/phpdotenv": "^5.2"
},
"keywords": [
"url",
"rewriting",
"routing",
"middleware",
"http",
"https",
"request",
"response",
"get",
"post",
"put",
"delete",
"rest",
"api"
],
"autoload": {
"psr-4": {
"ElementaryFramework\\WaterPipe\\": "src/WaterPipe/"
}
}
}