-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.36 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.36 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
54
55
{
"name": "square/square",
"version": "45.0.0.20260122",
"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": "*",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"php-http/discovery": "^1.0",
"php-http/multipart-stream-builder": "^1.0",
"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",
"guzzlehttp/guzzle": "^7.4"
},
"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": "developers@squareup.com"
},
"homepage": "https://squareup.com/developers"
}