-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 778 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 778 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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=7.1.10",
"ext-curl": "*",
"elementaryframework/events": "^0.1.0",
"elementaryframework/streams": "^0.1.0"
},
"keywords": [
"url",
"rewriting",
"routing",
"middleware",
"http",
"https",
"request",
"response",
"get",
"post",
"put",
"delete",
"rest",
"api"
],
"autoload": {
"psr-4": {
"ElementaryFramework\\WaterPipe\\": "src/WaterPipe/"
}
}
}