forked from zaporylie/php-vipps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.51 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
{
"name": "zaporylie/vipps",
"description": "PHP SDK for Vipps",
"type": "library",
"keywords": ["payment"],
"require": {
"php": "^7.2 || ^8.0",
"psr/http-message": "^1.0",
"php-http/message": "^1.6",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"eloquent/enumeration": "^5.1",
"jms/serializer": "^1.8 || ^3.0"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.0 || ^2.0",
"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"
},
"suggest": {
"php-http/guzzle6-adapter": "Guzzle adapter"
},
"license": "MIT",
"authors": [
{
"name": "Jakub Piasecki",
"email": "jakub@piaseccy.pl"
}
],
"scripts": {
"test": [
"composer test-style",
"composer test-unit",
"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/" }
}
}