-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.19 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": "whiskyjs/omnipay-tinkoff",
"description": "Tinkoff.Payments gateway for Omnipay",
"keywords": [
"omnipay",
"tinkoff"
],
"homepage": "https://github.com/whiskyjs/omnipay-tinkoff/",
"license": "MIT",
"authors": [
{
"name": "Alexander Selyuchenko",
"email": "alexander.selyuchenko@gmail.com",
"homepage": "https://github.com/whiskyjs/"
}
],
"repositories": [
{
"type": "github",
"url": "https://github.com/thephpleague/omnipay-common"
}
],
"require": {
"omnipay/common": "master",
"ext-json": "*",
"php-http/guzzle6-adapter": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"squizlabs/php_codesniffer": "^3.0",
"phpro/grumphp": "dev-master"
},
"autoload": {
"psr-4": {
"whiskyjs\\Omnipay\\Tinkoff\\": "src"
}
},
"scripts": {
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/",
"analyze": "phpstan analyse src tests"
},
"minimum-stability": "dev",
"prefer-stable": true
}