-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "sysix/lex-office-api",
"type": "library",
"description": "Simple API Integration for Lexoffice",
"scripts": {
"test": "phpunit",
"lint": "phpstan analyse --ansi --error-format raw",
"codestyle:check": "php-cs-fixer check",
"codestyle:fix": "php-cs-fixer fix",
"psalm": "psalm"
},
"keywords": [
"lex-office",
"lexoffice",
"rest",
"api"
],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"guzzlehttp/psr7": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"guzzlehttp/guzzle": "^7.8",
"friendsofphp/php-cs-fixer": "^3.57",
"vimeo/psalm": "^5.24",
"psalm/plugin-phpunit": "^0.19",
"phpstan/phpstan": "^2.0"
},
"suggest": {
"guzzlehttp/guzzle": "^7.0",
"kevinrob/guzzle-cache-middleware": "^5.0",
"spatie/guzzle-rate-limiter-middleware": "^2.0"
},
"autoload": {
"psr-4": {
"Sysix\\LexOffice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sysix\\LexOffice\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}