-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (42 loc) · 916 Bytes
/
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
{
"name": "phoice/phlexa",
"description": "Build voice applications for Amazon Alexa with phlexa and PHP",
"license": "MIT",
"type": "library",
"homepage": "https://www.phoice.tech/",
"config": {
"sort-packages": true
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"curl/curl": "^1.6",
"glenscott/url-normalizer": "^1.4",
"psr/container": "^1.0"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^1.1",
"phpunit/phpunit": "^10.3",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Phlexa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlexaTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs src/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html html/coverage/"
}
}