-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.27 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
{
"name": "boolxy/dataforseo",
"description": "The easiest way for using DataForSEO APIs in PHP",
"type": "library",
"keywords": [
"boolxy",
"dataforseo",
"seo",
"rank-tracker",
"serp",
"merchant",
"keyword-data",
"keyword-finder",
"competitor",
"on-page"
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.4",
"php": "^7.3"
},
"require-dev": {
"ext-mbstring": "*",
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5"
},
"license": "MIT",
"authors": [
{
"name": "Sezai Ozarslan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BoolXY\\DataForSEO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BoolXY\\DataForSEO\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check": "phpcs -p --standard=PSR2 --colors --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 src tests",
"fix": "phpcbf -p --standard=PSR2 --colors --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 src tests"
}
}