-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.34 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.34 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "openapi/openapi-sdk",
"description": "Minimal and agnostic PHP SDK for Openapi® (https://openapi.com)",
"license": "MIT",
"authors": [
{
"name": "Altravia",
"email": "info@altravia.com",
"homepage": "https://www.altravia.com",
"role": "Maintainer"
},
{
"name": "Lorenzo Paderi",
"email": "l.paderi@altravia.com",
"homepage": "https://github.com/lpaderiAltravia",
"role": "Developer"
},
{
"name": "Mario Ugurcu",
"email": "mario.ugurcu@wum-studios.de",
"homepage": "https://github.com/Seraphim200001",
"role": "Contributor"
},
{
"name": "Francesco Bianco",
"email": "bianco@javanile.org",
"homepage": "https://github.com/francescobianco",
"role": "Contributor"
},
{
"name": "Claude Code (Anthropic)",
"email": "noreply@anthropic.com",
"homepage": "https://claude.ai/code",
"role": "AI Contributor"
}
],
"keywords": [
"api", "rest", "http", "client", "sdk", "oauth", "oauth2", "token",
"sms", "pec", "email", "geocoding", "company", "business-registry",
"italy", "italian", "imprese", "visure", "catasto",
"laravel", "symfony", "codeigniter", "yii", "slim", "lumen",
"cakephp", "phalcon", "laminas", "zend", "october", "wordpress",
"php", "php8", "curl", "psr-18", "http-client", "guzzle"
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-json": "*",
"psr/http-client": "^1.0"
},
"require-dev": {
"symfony/dotenv": "^5.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Openapi\\": "src"
},
"files": [
"src/Bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit tests/",
"test:unit": "phpunit tests/ --testsuite=unit",
"example:token": "php examples/token_generation.php",
"example:api": "php examples/api_calls.php",
"example:complete": "php examples/complete_workflow.php"
}
}