-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.95 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
69
70
71
{
"name": "eloquage/docker-php",
"description": "Docker Engine API client for Laravel with a built-in Livewire management UI. Connect via Unix socket, TCP, or TLS. Manage containers, images, networks, volumes, and Swarm from code or the included Flux UI.",
"license": "MIT",
"version": "1.1.0",
"authors": [
{
"name": "Miguel Enes",
"email": "me@miguelenes.com",
"homepage": "https://miguelenes.com"
}
],
"homepage": "https://github.com/eloquage/docker-php",
"readme": "readme.md",
"keywords": [
"laravel",
"docker",
"docker-api",
"docker-engine",
"saloon",
"livewire",
"flux",
"containers",
"docker-swarm",
"api-client"
],
"support": {
"issues": "https://github.com/eloquage/docker-php/issues",
"source": "https://github.com/eloquage/docker-php",
"docs": "https://eloquage.github.io/docker-php"
},
"require": {
"illuminate/support": "^12",
"saloonphp/cache-plugin": "^3.0",
"saloonphp/laravel-plugin": "^3.0",
"saloonphp/saloon": "^3.14",
"livewire/livewire": "^4.0",
"livewire/flux": "^2.0"
},
"require-dev": {
"jonpurvis/lawman": "^4.0",
"orchestra/testbench": "^10",
"pestphp/pest": "^3",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"Eloquage\\DockerPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eloquage\\DockerPhp\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Eloquage\\DockerPhp\\DockerPhpServiceProvider"
],
"aliases": {
"DockerPhp": "Eloquage\\DockerPhp\\Facades\\DockerPhp"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}