-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathcomposer.json
48 lines (48 loc) · 1.09 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
{
"name": "square/square",
"version": "41.0.0.20250220",
"description": "Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.",
"keywords": [
"square",
"api",
"sdk"
],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4",
"apimatic/unirest-php": "^4.0.0",
"apimatic/core-interfaces": "~0.1.5",
"apimatic/core": "~0.3.12"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "3.5.0",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"Square\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Square\\Tests\\": "tests/"
}
},
"scripts": {
"build": [
"@php -l src",
"@php -l tests"
],
"test": "phpunit",
"analyze": "phpstan analyze src tests --memory-limit=1G"
},
"author": {
"name": "Square Developer Platform",
"url": "https://developer.squareup.com",
"email": "[email protected]"
},
"homepage": "https://squareup.com/developers"
}