-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 919 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 919 Bytes
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
{
"name": "lsv/altapay-php-api",
"description": "Altapay PHP API",
"keywords": [
"payment", "altapay"
],
"license": "MIT",
"authors": [
{
"name": "Martin Aarhof",
"email": "maa@scandesigns.dk"
}
],
"require": {
"php": "^5.5|^7.0",
"guzzlehttp/guzzle": "^6.0",
"symfony/options-resolver": "^2.6|^3.0",
"symfony/event-dispatcher": "^2.1|^3.0"
},
"autoload": {
"psr-4": {
"Altapay\\" : "src"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.3",
"phpmd/phpmd": "^2.2",
"sebastian/phpcpd": "^2.0",
"phploc/phploc": "^2.1",
"phing/phing": "^2.11",
"squizlabs/php_codesniffer": "^2.3",
"friendsofphp/php-cs-fixer": "^1.10",
"apigen/apigen": "dev-master",
"fzaninotto/faker": "^1.6"
},
"autoload-dev": {
"psr-4": {
"Altapay\\ApiTest\\" : "tests"
}
},
"config": {
"bin-dir": "bin"
}
}