-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
72 lines (72 loc) · 2.16 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
69
70
71
72
{
"name": "pen-y-fan/watson-text-to-speech-php",
"description": "Package to use Watson API to convert text to speech",
"keywords": [
"pen-y-fan",
"watson-text-to-speech-php",
"watson-text-to-speech",
"text-to-speech",
"tts",
"watson",
"ibm"
],
"homepage": "https://github.com/pen-y-fan/watson-text-to-speech-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Michael Pritchard",
"email": "michael.pen.y.fan@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"illuminate/support": "^6.0|^7.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpstan/phpstan": "^0.12.18",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpunit/phpunit": "^8.0",
"symplify/easy-coding-standard": "^7.2",
"symplify/phpstan-extensions": "^7.2"
},
"autoload": {
"psr-4": {
"PenYFan\\WatsonTextToSpeech\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PenYFan\\WatsonTextToSpeech\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"tests": "phpunit",
"test:unit": "phpunit --testsuite=unit",
"test:unit:coverage": "phpunit --testsuite=unit --coverage-html build/coverage",
"test:coverage": "phpunit --coverage-html build/coverage",
"checkcode": "phpcs config src tests --standard=PSR12",
"fixcode": "phpcbf config src tests --standard=PSR12",
"check-cs": "ecs check config src tests --ansi",
"fix-cs": "ecs check config src tests --fix --ansi",
"phpstan": "phpstan analyse --ansi --error-format symplify"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"PenYFan\\WatsonTextToSpeech\\WatsonTextToSpeechServiceProvider"
],
"aliases": {
"WatsonTextToSpeechPhp": "PenYFan\\WatsonTextToSpeech\\WatsonTextToSpeechFacade"
}
}
}
}