-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
39 lines (39 loc) · 1.16 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
{
"name": "fattureincloud/fattureincloud-php-sdk",
"description": "Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.",
"keywords": [
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://www.fattureincloud.it",
"license": "MIT",
"authors": [
{
"name": "Fatture in Cloud API Team",
"homepage": "https://www.fattureincloud.it"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^2.1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": { "FattureInCloud\\" : "lib/" }
},
"autoload-dev": {
"psr-4": { "FattureInCloud\\Test\\" : "test/" }
}
}