-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathcomposer.json
45 lines (45 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
{
"name": "square/square",
"description": "Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.",
"version": "19.1.1.20220616",
"type": "library",
"keywords": [
"Square",
"API",
"SDK"
],
"homepage": "https://squareup.com/developers",
"license": "MIT",
"authors": [
{
"name": "Square Developer Platform",
"email": "developers@squareup.com",
"homepage": "https://squareup.com/developers"
}
],
"require": {
"php": ">=7.2 <8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"apimatic/unirest-php": "^2.3.0",
"apimatic/jsonmapper": "^3.0.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phan/phan": "5.3.1",
"phpunit/phpunit": "^7.5 || ^8.5"
},
"autoload": {
"psr-4": {
"Square\\": "src/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html=coverage",
"lint": "phpcs --standard=phpcs-ruleset.xml src/",
"lint-fix": "phpcbf --standard=phpcs-ruleset.xml src/",
"analyze": "phan --allow-polyfill-parser"
}
}