-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
60 lines (60 loc) · 1.72 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
{
"name": "zaporylie/vipps",
"description": "PHP SDK for Vipps",
"type": "library",
"keywords": ["payment"],
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^2",
"psr/http-client-implementation": "^1.0",
"php-http/message": "^1.6",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/discovery": "^1.17",
"eloquent/enumeration": "^5.1",
"jms/serializer": "^1.8 || ^3.0",
"doctrine/annotations": "^1.14 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7",
"php-http/guzzle7-adapter": "^1",
"phpunit/phpunit": ">=5 <9",
"symfony/yaml": "^2.0",
"symfony/filesystem": "^3.1",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"editorconfig-checker/editorconfig-checker": "^10.4"
},
"suggest": {
"php-http/guzzle7-adapter": "Guzzle adapter"
},
"license": "MIT",
"authors": [
{
"name": "Jakub Piasecki",
"email": "jakub@piaseccy.pl"
}
],
"scripts": {
"test": [
"composer test-style",
"composer test-phpstan"
],
"test-style": "./vendor/bin/phpcs -p",
"fix-style": "./vendor/bin/phpcbf -p",
"test-unit": "./vendor/bin/phpunit",
"test-phpstan": "./vendor/bin/phpstan analyze"
},
"autoload": {
"psr-4": { "zaporylie\\Vipps\\": "src/" }
},
"autoload-dev": {
"psr-4": { "zaporylie\\Vipps\\Tests\\": "test/" }
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}