forked from rentpost/forte-payments-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (39 loc) · 1.25 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": "parljohn/forte-payments-php",
"type": "library",
"description": "Forked from rentpost to update composer... PHP API wrapper client for Forte's API v3 https://restdocs.forte.net/",
"homepage": "https://github.com/parljohn/forte-payments-php",
"license": "MIT",
"authors": [
{
"name": "Jacob Thomason",
"email": "jacob@rentpost.com"
},
{
"name": "Samual Anthony",
"email": "sam@expertcoder.io"
}
],
"require": {
"php": ">=7.3",
"doctrine/common": "^3",
"guzzlehttp/guzzle": "^7.0",
"symfony/monolog-bundle": "^3.1",
"symfony/expression-language": "5.*",
"symfony/property-access": "5.*",
"symfony/property-info": "5.*",
"symfony/serializer": "5.*",
"symfony/validator": "5.*",
"symfony/var-dumper": "5.*",
"symfony/yaml": "5.*"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.1"
},
"autoload": {
"psr-4": {
"Rentpost\\ForteApi\\": "src/",
"Rentpost\\ForteApi\\Test\\": "test/"
}
}
}