-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (45 loc) · 1.41 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
47
48
{
"name": "rentpost/forte-payments-php",
"type": "library",
"description": "PHP API wrapper client for Forte's API v3 https://restdocs.forte.net/",
"homepage": "https://github.com/rentpost/forte-payments-php",
"license": "MIT",
"authors": [
{
"name": "Jacob Thomason",
"email": "[email protected]"
},
{
"name": "Samual Anthony",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"psr/log": "~2.0 || ~3.0",
"doctrine/common": "^2.13 || ^3.0",
"guzzlehttp/guzzle": "^7.4",
"monolog/monolog": "^3.0",
"symfony/expression-language": "^6.4.0",
"symfony/property-access": "^6.4.0",
"symfony/property-info": "^6.4.0",
"symfony/serializer": "^6.4.0",
"symfony/validator": "^6.4.0",
"symfony/var-dumper": "^6.4.0",
"symfony/yaml": "^6.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"rector/rector": "dev-main"
},
"autoload": {
"psr-4": {
"Rentpost\\ForteApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rentpost\\ForteApi\\Test\\": "test/"
}
}
}