generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
63 lines (63 loc) · 1.52 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
{
"name": "renoki-co/php-helm",
"description": "PHP Helm Processor is a process wrapper for Kubernetes' Helm v3 CLI. You can run programmatically Helm v3 commands, directly from PHP, with a simple syntax.",
"keywords": [
"laravel",
"php",
"helm",
"kubernetes",
"k8s",
"charts",
"wrapper",
"api",
"cli",
"kubeadm",
"kubeapi",
"k0s",
"k3s"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/php-helm",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"illuminate/macroable": "^9.0.1",
"illuminate/support": "^9.0.1",
"symfony/process": "^5.4|^6.0"
},
"autoload": {
"psr-4": {
"RenokiCo\\PhpHelm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\PhpHelm\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.6.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.21"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"RenokiCo\\PhpHelm\\PhpHelmServiceProvider"
]
}
}
}