-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
78 lines (78 loc) · 2.04 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
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
{
"name": "paynl/php-sdk",
"description": "Software Development Kit for implementing Pay.'s API version 3",
"version": "0.1.0",
"type": "library",
"require": {
"php": "^7.4|^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/container": "^1.0",
"psr/http-message": "~1.0"
},
"license": "MIT",
"support": {
"email": "[email protected]"
},
"keywords": [
"sdk",
"api",
"rest",
"plugins"
],
"require-dev": {
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.3",
"phpmd/phpmd": "^2.7",
"phpstan/phpstan": "1.10.4",
"phpunit/phpunit": "^10",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^4.3"
},
"autoload": {
"psr-4": {
"PayNL\\Sdk\\": "src/",
"PayNL\\GuzzleHttp\\": "build/guzzle/src",
"PayNL\\GuzzleHttp\\Promise\\": "build/promises/src",
"PayNL\\GuzzleHttp\\Psr7\\": "build/psr7/src"
},
"files": [
"./src/Resources/functions/text.php",
"./src/Resources/functions/vat.php",
"./build/guzzle/src/functions_include.php",
"./build/promises/src/functions_include.php",
"./build/psr7/src/functions_include.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
],
"config": {
"bin-dir": "bin",
"secure-http": false,
"optimize-autoloader": true,
"sort-packages": true,
"discard-changes": true
},
"scripts": {
"test": [
"@style-check"
],
"style-check": [
"@phpstan",
"@phpmd",
"@phpcs"
],
"phpstan": "bin/phpstan analyse",
"phpmd": "bin/phpmd src,samples text phpmd.xml",
"phpcs": "bin/phpcs"
},
"archive": {
"exclude": [
"!vendor",
"composer.phar"
]
}
}