-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 1.11 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
{
"name": "elevenlabs/dockerhostmanager",
"autoload": {
"psr-4": {
"ElevenLabs\\DockerHostManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElevenLabs\\DockerHostManager\\": "tests/"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"require": {
"php": ">=7.3",
"ext-intl": "*",
"ext-gmp": "*",
"ext-pcntl": "*",
"docker-php/docker-php": "^2.0",
"sop/x509": "^0.6.0",
"monolog/monolog": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mikey179/vfsStream": "^1.6",
"friendsofphp/php-cs-fixer": "^2.14"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"lint-fix": "vendor/bin/php-cs-fixer fix --verbose",
"test": "phpdbg -qrr vendor/bin/phpunit --testdox --coverage-text",
"test-ci": "phpdbg -qrr vendor/bin/phpunit --testdox --log-junit build/phpunit.xml --coverage-clover build/phpunit.coverage.xml --coverage-text"
}
}