-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.51 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sumup/sumup-php",
"description": "SumUp PHP SDK",
"type": "library",
"license": "Apache-2.0",
"version": "0.1.2",
"keywords": [
"sumup",
"sdk",
"payments",
"checkout"
],
"homepage": "https://developer.sumup.com",
"authors": [
{
"name": "SumUp",
"email": "integration@sumup.com",
"homepage": "https://github.com/sumup"
}
],
"config": {
"platform": {
"php": "8.2.0"
},
"allow-plugins": {
"phpdocumentor/shim": true
}
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff",
"analyse": "phpstan analyse --configuration=phpstan.neon --no-progress --memory-limit=1G",
"test": "phpunit"
},
"require": {
"php": "^8.2",
"ext-curl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.94.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6",
"phpdocumentor/shim": "^3.9",
"league/oauth2-client": "^2.9"
},
"suggest": {
"guzzlehttp/guzzle": "Use SumUp\\\\HttpClient\\\\GuzzleClient for a Guzzle-based HTTP client."
},
"autoload": {
"psr-4": {
"SumUp\\": "src/"
},
"classmap": [
"src/Checkouts/Checkouts.php",
"src/Customers/Customers.php",
"src/Members/Members.php",
"src/Memberships/Memberships.php",
"src/Merchants/Merchants.php",
"src/Payouts/Payouts.php",
"src/Readers/Readers.php",
"src/Receipts/Receipts.php",
"src/Roles/Roles.php",
"src/Shared/Shared.php",
"src/Subaccounts/Subaccounts.php",
"src/Transactions/Transactions.php"
]
},
"autoload-dev": {
"psr-4": {
"SumUp\\Tests\\": "tests/"
}
}
}