-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.24 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
{
"name": "sdksio/apimatic-splitit-sdk",
"description": "APIMatic SDK for SplitIt API",
"type": "library",
"keywords": [
"apimatic",
"splitit",
"sdk",
"api"
],
"homepage": "https://apimatic.io/",
"license": [
"MIT"
],
"authors": [
{
"name": "developer-sdksio",
"email": "developer+sdksio@apimatic.io"
}
],
"support": {},
"prefer-stable": false,
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-curl": "*",
"apimatic/unirest-php": "^4.0.6",
"apimatic/core-interfaces": "~0.1.5",
"apimatic/core": "~0.3.17"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phan/phan": "5.4.5"
},
"autoload": {
"psr-4": {
"SplititWebApiV4Lib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SplititWebApiV4Lib\\Tests\\": "tests/"
}
},
"scripts": {
"lint-src": "phpcs --standard=phpcs-ruleset.xml src/",
"lint-src-fix": "phpcbf --standard=phpcs-ruleset.xml src/",
"analyze": "phan --allow-polyfill-parser -p",
"lint": [
"@lint-src"
]
}
}