forked from chrometoasters/sitehost-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.22 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
{
"name": "thelogicstudio/sitehost-api-client",
"description": "PHP client for SiteHost's API",
"type": "library",
"keywords": [
"sitehost",
"sitehostnz",
"api",
"client"
],
"homepage": "https://github.com/chrometoasters/sitehost-api-client",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Chrometoaster Ltd.",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/chrometoasters/sitehost-api-client/issues"
},
"require": {
"php": ">=7.3",
"symfony/yaml": "~4",
"ext-json": "*"
},
"require-dev": {
"chrometoaster/backend-coding-standards": "~1.1.0",
"phpstan/phpstan-shim": "~0.9.2"
},
"scripts": {
"lint": "parallel-lint src --colors && ecs check src --ansi",
"lint-fix": "parallel-lint src --colors && ecs check src --fix --ansi",
"stan": "phpstan analyse src -c phpstan.neon --level 1 --ansi",
"full-check": [
"@lint-fix",
"@stan"
]
},
"autoload": {
"psr-4": {
"Chrometoaster\\SiteHost\\API\\": "src/SiteHost/API/"
}
}
}