forked from Lansoweb/api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "zooxsmart/los-api-client",
"description": "REST API Client using Hal",
"license": "MIT",
"type": "library",
"keywords": [
"api",
"rest",
"client",
"hal"
],
"authors": [
{
"name": "Leandro Silva",
"email": "[email protected]"
}
],
"homepage": "https://github.com/Lansoweb/api-client",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"laminas/laminas-eventmanager": "^3.12",
"laminas/laminas-paginator": "^2.18",
"psr/container": "^1.0 || ^2.0",
"psr/link": "^1.0",
"psr/simple-cache": "^1.0",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7.2"
},
"suggest": {
"zooxsmart/los-log": "zooxsmart/los-log for logging"
},
"autoload": {
"psr-4": {
"Los\\ApiClient\\": "src/"
},
"classmap": [
"./"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"process-timeout": 5000,
"sort-packages": true
},
"extra": {
"zf": {
"config-provider": "Los\\ApiClient\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"cs-check": "phpcs -s",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse"
}
}