forked from getloy/getloy-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.23 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
{
"name": "getloy/getloy-php",
"description": "PHP library for the GetLoy Payment Integration API.",
"version": "1.0.3",
"type": "library",
"license": "GPL-3.0-only",
"homepage": "https://getloy.com/",
"keywords": ["payment processing", "api", "getloy"],
"authors": [
{
"name": "Jan Hagelauer",
"email": "jan@geekho.asia",
"role": "Developer"
}
],
"support": {
"email": "dev@getloy.com",
"issues": "https://github.com/getloy/getloy-php/issues",
"source": "https://github.com/getloy/getloy-php",
"docs": "https://github.com/getloy/getloy-php"
},
"scripts": {
"generate-docs": [
"phpdoc",
"vuepress build docs/api"
]
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Geekho\\Getloy\\": "lib"
},
"psr-0": {
"Geekho\\Getloy\\": "lib"
},
"classmap": ["lib/"]
},
"require": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"inpsyde/php-coding-standards": "^0.13.4",
"phpdocumentor/phpdocumentor": "^2.9",
"nelson6e65/phpdoc-vuepress": "^1.0@beta"
}
}