-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "costeirs/omnipay-aliant",
"description": "Aliant driver for the Omnipay PHP payment processing library",
"type": "library",
"require": {
"omnipay/common": "^3.0",
"colinodell/json5": "^2.0",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"require-dev": {
"omnipay/tests": "^3.1",
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^6.5"
},
"homepage": "https://github.com/costeirs/omnipay-aliant",
"license": "MIT",
"authors": [
{
"name": "Stephen Costeira",
"email": "costeirs@users.noreply.github.com"
},
{
"name": "Omnipay Contributors",
"homepage": "https://github.com/costeirs/omnipay-aliant/contributors"
}
],
"autoload": {
"psr-4": { "Omnipay\\Aliant\\" : "src/" }
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
}
}