-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 914 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": "qdequippe/pappers-php-api",
"description": "PHP Client for Pappers API",
"keywords": ["pappers", "pappersapi", "api", "client", "openapi", "swagger", "sdk"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Qdequippe\\Pappers\\Api\\": "generated/",
"Qdequippe\\Pappers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qdequippe\\Pappers\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Quentin Dequippe",
"email": "quentin@dequippe.tech"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"jane-php/open-api-runtime": "^7.4"
},
"require-dev": {
"jane-php/open-api-3": "^7.4",
"friendsofphp/php-cs-fixer": "^3.13",
"rector/rector": "^0.17.0 || ^0.19.0 || ^1.0.0"
}
}