-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 971 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": "newage/audio-manager",
"type": "library",
"description": "Audio Manager for text-to-speech cloud services",
"license": "MIT",
"keywords": [
"tts",
"speech"
],
"homepage": "https://github.com/newage/AudioManager",
"authors": [
{
"name": "Vadim Leontiev",
"email": "vadim.leontiev@gmail.com",
"homepage": "https://github.com/newage",
"role": "Developer"
}
],
"require": {
"php": ">=5.6 | >= 7.0",
"aws/aws-sdk-php": "^3.21"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.5.*",
"phpmd/phpmd": "2.4.*"
},
"autoload": {
"psr-4": {
"AudioManager\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"scripts": {
"test": "php vendor/bin/phpunit",
"cs": "php vendor/bin/phpcs src --standard=PSR2 --colors",
"cs-fix": "php vendor/bin/phpcbf src --standard=PSR2 --colors"
}
}