-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
37 lines (37 loc) · 962 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
{
"name" : "pdffiller/pdffiller-php-api-client",
"description": "PHP client for pdffiller.com REST API",
"keywords": ["pdffiller", "api", "rest", "client"],
"license": "MIT",
"authors": [
{
"name": "API Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"league/oauth2-client": "^2.6",
"oodle/inflect": "^0.2.0",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"adammbalogh/key-value-store-file": "^0.5.3",
"larapack/dd": "^1.0",
"nesbot/carbon": "^2.31",
"vlucas/phpdotenv": "^3.3|^5.4"
},
"autoload": {
"psr-4": {
"PDFfiller\\OAuth2\\Client\\Provider\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Examples\\": "examples/" }
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": false
}
}
}