This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.13 KB
/
composer.json
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
{
"name": "phoice/phlexa-mezzio-skeleton",
"description": "Skeleton application to build voice applications for Amazon Alexa with phlexa, PHP and Mezzio. ",
"license": "MIT",
"type": "project",
"homepage": "https://www.phoice.tech/",
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-laminasrouter",
"mezzio/mezzio-laminasviewrenderer"
]
}
},
"minimum-stability": "beta",
"require": {
"php": "^7.1",
"ext-json": "*",
"phoice/phlexa": "^3.0.0",
"phoice/phlexa-mezzio": "^3.0.0",
"roave/security-advisories": "dev-master",
"laminas/laminas-component-installer": "^2.1.1",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-diactoros": "^1.7.1",
"mezzio/mezzio": "^3.0.1",
"mezzio/mezzio-helpers": "^5.0",
"mezzio/mezzio-laminasrouter": "^3.0",
"mezzio/mezzio-laminasviewrenderer": "^2.0",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-dependency-plugin": "^1.0"
},
"require-dev": {
"filp/whoops": "^2.1.12",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^2.9.1",
"mezzio/mezzio-tooling": "^1.0"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/",
"Hello\\": "module/Hello/src/"
}
},
"autoload-dev": {
"psr-4": {
"ApplicationTest\\": "module/Application/test/",
"HelloTest\\": "module/Hello/test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs module/",
"mezzio": "mezzio --ansi",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html html/coverage/",
"upload-coverage": "coveralls -v"
}
}