forked from stanwarri/fstackapi_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 913 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
{
"name": "seunmatt/fstackapi_php",
"description": "This is a (Laravel) PHP wrapper for formstack's REST API v2.",
"keywords": ["Laravel", "Formstack", "PHP"],
"license": "MIT",
"github": "https://github.com/SeunMatt/fstackapi_php",
"authors": [
{
"name": "Seun Matt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^7.5",
"illuminate/support": "5.*|6.*|7.*|8.*|9.*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"FormStack\\": "src/formstack/",
"FSExceptions\\": "src/exceptions/",
"FormStack\\Providers\\": "src/providers/",
"Config\\": "src/config/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}