-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.17 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
46
{
"name": "tben/omnipay-yoomoney",
"type": "library",
"description": "Yoomoney gateway for Omnipay payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"yoomoney",
"yookassa",
"purchase"
],
"homepage": "https://github.com/tben/omnipay-yoomoney",
"license": "MIT",
"authors": [
{
"name": "Ben Tidy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Omnipay\\YooMoney\\": "src",
"Omnipay\\YooMoney\\Tests\\": "tests"
}
},
"require": {
"php": "^8.0",
"omnipay/common": "^3.2.0",
"symfony/http-foundation": "^6.0|^6.1|^6.2",
"symfony/http-client": "^6.0|^6.1|^6.2",
"http-interop/http-factory-guzzle": "^1.2"
},
"require-dev": {
"omnipay/tests": "^4.1.2",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"prefer-stable": true
}