-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "digistorm/omnipay-school-easy-pay",
"type": "library",
"description": "School EasyPay driver for the Omnipay payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/digistorm/omnipay-school-easy-pay",
"license": "MIT",
"autoload": {
"psr-4": { "Omnipay\\SchoolEasyPay\\" : "src/" }
},
"require": {
"php": "^8.1",
"omnipay/common": "^3",
"symfony/http-client": "^7.1"
},
"require-dev": {
"omnipay/tests": "^4",
"http-interop/http-factory-guzzle": "^1.2",
"rector/rector": "^1.2",
"phpstan/phpstan": "^1.12",
"friendsofphp/php-cs-fixer": "^3.64",
"spaze/phpstan-disallowed-calls": "^3.5",
"nesbot/carbon": "^3.0"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"prefer-stable": true
}