forked from paynl/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 1.83 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 1.83 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "paynl/php-sdk",
"description": "Pay. API client library for PHP. Pay. is an all-in-one European PSP offering 50+ payment methods both online and instore.",
"version": "1.2.0",
"type": "library",
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7",
"psr/container": "^2 || ^1",
"psr/http-message": "^2 || ^1",
"symfony/serializer": "^6.4 || ^7.0 || ^8.0",
"doctrine/collections": "^2.2",
"laminas/laminas-hydrator": "^4.5"
},
"license": "MIT",
"support": {
"email": "webshop@pay.nl"
},
"keywords": [
"pay",
"paynl",
"payment",
"psp",
"ideal",
"bancontact",
"apple pay",
"api",
"php"
],
"require-dev": {
"ext-simplexml": "*",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^8.22",
"squizlabs/php_codesniffer": "^3",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"PayNL\\Sdk\\": "src/"
},
"files": [
"./src/Resources/functions/text.php",
"./src/Resources/functions/vat.php",
"./src/Resources/functions/misc.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"discard-changes": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": [
"@style-check"
],
"style-check": [
"@phpstan",
"@phpcs"
],
"phpstan": "php -d memory_limit=512M vendor/bin/phpstan analyse",
"phpcs": "vendor/bin/phpcs"
},
"archive": {
"exclude": [
"!vendor",
"composer.phar"
]
}
}