-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1001 Bytes
/
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
{
"name": "gingdev/ipay",
"version": "1.0.2",
"description": "IPay API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"IPay\\": "src/"
}
},
"authors": [
{
"name": "ging-dev",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php-http/httplug": "^2.4",
"php-http/client-common": "^2.7",
"nette/utils": "^4.0",
"eventsauce/object-hydrator": "^1.4",
"symfony/dom-crawler": "^7.1",
"phpseclib/phpseclib": "^2.0",
"symfony/var-exporter": "^7.1"
},
"require-dev": {
"php-http/curl-client": "^2.3",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.11",
"pestphp/pest": "^2.34"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}