-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 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
{
"name": "oblak/whmcs-dev-helper",
"description": "Development utilities for WHMCS modules",
"type": "composer-plugin",
"version": "1.0.2",
"license": "MIT",
"authors": [
{
"name": "Sibin Grasic",
"email": "[email protected]",
"homepage": "https://oblak.host",
"role": "CTO"
},
{
"name": "Contributors",
"homepage": "https://github.com/oblakhost/whmcs-dev-helper/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/oblakhost/whmcs-dev-helper/issues",
"source": "https://github.com/oblakhost/whmcs-dev-helper"
},
"bin": [
"bin/module-install",
"bin/pack"
],
"autoload": {
"psr-4": {
"Oblak\\Composer\\Plugin\\": "src"
}
},
"require": {
"php": "^8.0 | ^8.1",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"oblak/whmcs-stubs": "^7.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"class": "\\Oblak\\Composer\\Plugin\\WHMCSDevPlugin"
},
"scripts": {}
}