-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.6 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
{
"name": "ampedradio/alexa-streaming-php",
"type": "library",
"description": "Simple base package to create a streaming audio Alexa skill in PHP",
"keywords": ["alexa", "streaming", "audio"],
"homepage": "https://github.com/AmpedRadio/alexa-streaming-php",
"license": "MIT",
"authors": [
{
"name": "Bill Condo",
"email": "[email protected]",
"homepage": "https://amped.radio"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"vlucas/phpdotenv": "^3.6",
"nomisoft/php-alexa-helper": "^1.2",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.52",
"phpunit/phpunit": "^8.5|^9.4",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"AmpedRadio\\AlexaStreamingPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AmpedRadio\\AlexaStreamingPHP\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpcs": "vendor/bin/phpcs src tests --standard=psr2 -sp",
"phpstan": "vendor/bin/phpstan analyse src tests --level=max --no-progress",
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@lint",
"@phpstan",
"@phpunit",
"@phpcs"
]
},
"support": {
"issues": "https://github.com/AmpedRadio/alexa-streaming-php/issues"
}
}