-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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
{
"name": "fergusdixon/payfast-sdk-php",
"description": "PayFast SDK - Make requests to PayFast",
"type": "library",
"license": "MIT",
"keywords": ["payfast", "payments"],
"authors": [
{
"name": "Fergus Strangways-Dixon",
"email": "fergusdixon@github.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.2.1"
},
"require-dev": {
"phpunit/phpunit": "~7.3",
"mockery/mockery": "dev-master",
"internations/http-mock": "^0.10",
"codacy/coverage": "dev-master",
"squizlabs/php_codesniffer": "^3.3"
},
"prefer-stable": true,
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"FergusDixon\\PayFastSDK\\": "src/",
"FergusDixon\\PayFastSDK\\Tests\\": "tests/"
},
"exclude-from-classmap": ["/Tests/"]
},
"scripts": {
"check-style": [
"bin/phpcs -p --extensions=php --standard=PSR2 --error-severity=1 --warning-severity=0 --ignore=./tests/coverage/* ./src ./tests;"
],
"fix-style": [
"bin/phpcbf --standard=PSR2 --extensions=php --ignore=./tests/coverage/* ./src ./tests;"
]
}
}