-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
52 lines (52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "gabrielfs7/google-trends",
"description": "PHP Google Trends API",
"license": "MIT",
"authors": [
{
"name": "Gabriel Felipe Soares",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"GSoares\\GoogleTrends\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GSoares\\GoogleTrends\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"bin/phpunit"
],
"test-report": [
"bin/phpunit --coverage-html tests-report"
],
"phpcbf": [
"bin/phpcbf src/",
"bin/phpcbf tests/"
],
"php-cs-fixer": [
"bin/php-cs-fixer fix tests/",
"bin/php-cs-fixer fix src/"
]
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
}
}