-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.83 KB
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
{
"name": "gosuccess/enhance-api",
"description": "Modern PHP API client for the Enhance control panel API with PHP 8.4 features",
"type": "library",
"license": "MIT",
"keywords": [
"enhance",
"enhance.com",
"api",
"client",
"hosting",
"control-panel",
"php8.4"
],
"homepage": "https://github.com/GoSuccessHQ/enhance-api",
"readme": "README.md",
"autoload": {
"psr-4": {
"GoSuccess\\Enhance\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GoSuccess\\Enhance\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "GoSuccess GmbH",
"homepage": "https://gosuccess.io",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage --coverage-text",
"analyse": "phpstan analyse --memory-limit=2G",
"analyse:baseline": "phpstan analyse --generate-baseline --memory-limit=2G",
"cs:check": "php-cs-fixer fix --dry-run --diff --verbose",
"cs:fix": "php-cs-fixer fix --verbose",
"check": [
"@cs:check",
"@analyse",
"@test"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"support": {
"issues": "https://github.com/GoSuccessHQ/enhance-api/issues",
"source": "https://github.com/GoSuccessHQ/enhance-api"
}
}