-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.25 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
{
"name": "thejano/text-translator",
"keywords": [
"TheJano",
"text",
"translate",
"translator",
"text-translate",
"Google",
"Google Translate"
],
"description": "A package to translate text from Google Translator for free without api. ",
"homepage": "https://github.com/thejano/text-translator",
"license": "MIT",
"autoload": {
"psr-4": {
"TheJano\\TextTranslator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheJano\\TextTranslator\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Dr Pshtiwan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.8",
"pestphp/pest": "^1.22"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}