forked from plug-and-pay/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 963 Bytes
/
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
{
"name": "plug-and-pay/sdk-php",
"version": "1.0.3",
"description": "This is a PHP SDK to make easier to communicate with the Plug&Pay API.",
"keywords": [
"PlugAndPay",
"imu",
"Internet Marketing Unie"
],
"scripts": {
"sniff": [
"./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots"
],
"lint": [
"./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots"
]
},
"homepage": "https://github.com/plug-and-pay/sdk-php",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.2",
"symfony/var-dumper": "^6.1",
"friendsofphp/php-cs-fixer": "^3.11"
},
"autoload": {
"psr-4": {
"PlugAndPay\\Sdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PlugAndPay\\Sdk\\Tests\\": "Tests/"
}
}
}