-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.27 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
{
"name": "apility/vipps",
"description": "Vipps PHP Library",
"type": "library",
"license": "MIT",
"keywords": [
"vipps",
"ecommerce"
],
"homepage": "https://github.com/apility/vipps-php",
"authors": [
{
"name": "Thomas Alrek",
"email": "[email protected]",
"homepage": "https://github.com/thomas-alrek",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/apility/vipps-php/issues",
"source": "https://github.com/apility/vipps-php",
"docs": "http://htmlpreview.github.io/?https://github.com/apility/vipps-php/blob/master/docs/index.html"
},
"non-feature-branches": [
"hotfix-.*",
"release-.*"
],
"autoload": {
"psr-4": {
"Vipps\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vipps\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": "^7.4.0|^8.0",
"netflex/http": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.4",
"brainmaestro/composer-git-hooks": "^2.6"
},
"scripts": {
"test": "vendor/bin/phpcs --standard=ruleset.xml --encoding=utf-8 -n --report=diff src tests && vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
}
}