forked from phoice/phlexa-mezzio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.5 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
{
"name": "phoice/phlexa-mezzio",
"description": "Build voice applications for Amazon Alexa with phlexa, PHP and Mezzio",
"license": "MIT",
"type": "library",
"homepage": "https://www.phoice.tech/",
"config": {
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
},
"minimum-stability": "beta",
"require": {
"php": "^8.1",
"fig/http-message-util": "^1.1",
"phoice/phlexa": "^4.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"mezzio/mezzio-router": "^3.0",
"mezzio/mezzio-template": "^2.0",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-dependency-plugin": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^10.3.4",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "9.3.5"
},
"autoload": {
"psr-4": {
"PhlexaMezzio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlexaMezzioTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs src/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html html/coverage/",
"sniffer:php8": "phpcs -p ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1"
}
}