-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
39 lines (39 loc) · 1 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
{
"name": "php-translation/translator",
"description": "Translator services",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.7",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"nyholm/nsa": "^1.1",
"php-http/curl-client": "^1.0 || ^2.0",
"php-http/message": "^1.8",
"nyholm/psr7": "^1.2"
},
"autoload": {
"psr-4": {
"Translation\\Translator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Translation\\Translator\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}