-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1002 Bytes
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1002 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": "webiny/router",
"type": "library",
"description": "Webiny Router Component",
"keywords": [
"router",
"routing"
],
"homepage": "http://www.webiny.com/",
"license": "MIT",
"authors": [
{
"name": "Sven Al Hamad",
"email": "sven@webiny.com"
},
{
"name": "Pavel Denisjuk",
"email": "pavel@webiny.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7",
"webiny/std-lib": "~1.6",
"webiny/cache": "~1.6",
"webiny/config": "~1.6",
"webiny/http": "~1.6",
"webiny/service-manager": "~1.6"
},
"require-dev": {
"phpunit/phpunit": "~6",
"mybuilder/phpunit-accelerator": "dev-master"
},
"autoload": {
"psr-4": {
"Webiny\\Component\\Router\\": ""
}
},
"extras": {
"branch-alias": {
"dev-master": "1.6-dev"
}
}
}