-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 896 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
{
"name": "pitwch/rest-api-wrapper-proffix-php",
"description": "PHP Wrapper for PROFFIX REST API",
"type": "library",
"version": "1.9.0",
"homepage": "https://www.pitw.ch",
"license": "MIT",
"authors": [
{
"name": "Simon Pedrett",
"email": "s.pedrett@pitw.ch"
}
],
"keywords": ["rest", "curl", "proffix", "restful", "api", "proffix rest api","php","wrapper"],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Pitwch\\RestAPIWrapperProffix\\": ["src/RestAPIWrapperProffix"]
}
},
"autoload-dev": {
"psr-4": {
"Pitwch\\RestAPIWrapperProffix\\Tests\\": "tests/RestAPIWrapperProffix/",
"Pitwch\\RestAPIWrapperProffix\\Tests\\Integration\\": "tests/Integration/"
}
}
}