-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1016 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "exbil/lexoffice-php-api",
"type": "library",
"description": "Simple API Integration for Lex-Office",
"keywords": [
"lex-office",
"lexoffice",
"rest",
"php",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Efe Bagri",
"email": "[email protected]",
"homepage": "https://www.exbil.net/"
}
],
"support": {
"issues": "https://github.com/exbil/lexoffice-php-api/issues",
"source": "https://github.com/exbil/lexoffice-php-api"
},
"require": {
"php": "^7.4 | ^8",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.2 | ^7.0",
"psr/cache": "^1.0 | ^2.0 | ^3.0"
},
"require-dev": {
"fzaninotto/faker": "^1.9.1",
"phpunit/phpunit": "^9.0",
"symfony/cache": "^5.1"
},
"autoload": {
"psr-4": {
"Exbil\\LexOffice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Exbil\\LexOffice\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}