-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
62 lines (62 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
{
"name": "apimatic/unirest-php",
"description": "Unirest PHP",
"keywords": [
"rest",
"curl",
"http",
"https",
"client"
],
"type": "library",
"homepage": "https://github.com/apimatic/unirest-php",
"license": "MIT",
"authors": [
{
"name": "Mashape",
"email": "[email protected]",
"homepage": "https://www.mashape.com",
"role": "Developer"
},
{
"name": "APIMATIC",
"email": "[email protected]",
"homepage": "https://www.apimatic.io",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"apimatic/core-interfaces": "^0.1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phan/phan": "5.4.2",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
},
"autoload": {
"psr-4": {
"Unirest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unirest\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html=coverage",
"test-coverage-text": "phpunit --coverage-text",
"lint": "phpcs --standard=phpcs-ruleset.xml src/",
"lint-test": "phpcs --standard=phpcs-ruleset.xml tests/",
"lint-fix": "phpcbf --standard=phpcs-ruleset.xml src/",
"lint-fix-test": "phpcbf --standard=phpcs-ruleset.xml tests/",
"analyze": "phan --allow-polyfill-parser"
},
"support": {
"email": "[email protected]"
}
}