-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.94 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
{
"name": "krystal/katapult-whmcs",
"description": "WHMCS provisioning module for Katapult",
"type": "project",
"require": {
"php": "^8.1",
"ext-pdo": "*",
"grizzlyware/salmon-whmcs": "^1.1",
"krystal/katapult": "^5.3",
"psr/http-message": "1.0.1"
},
"license": "MIT",
"authors": [
{
"name": "Josh Bonfield",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/krystal/katapult-whmcs",
"issues": "https://github.com/krystal/katapult-whmcs/issues",
"docs": "https://docs.katapult.io/docs/dev/whmcs/overview",
"chat": "https://discord.com/channels/899710864716857384/899713986633818163"
},
"autoload": {
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WHMCS\\Module\\Server\\Katapult\\": "lib/",
"Krystal\\Katapult\\WHMCS\\Dev\\": "dev/",
"Krystal\\KatapultTest\\": "tests/"
}
},
"require-dev": {
"ext-zip": "*",
"composer/composer": "^2.0",
"guzzlehttp/guzzle": "^7.8",
"illuminate/database": "^7",
"illuminate/support": "^7",
"nesbot/carbon": "^2.46",
"nyholm/psr7": "^1.6",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.8",
"symfony/console": "^5.2",
"symfony/filesystem": "^5.2"
},
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"lint": "phpcs --standard=phpcs.xml -p",
"lint-fix": "phpcbf --standard=phpcs.xml -p",
"stan": "phpstan --memory-limit=1G",
"test": "phpunit -c phpunit.xml --testdox --display-warnings"
}
}