generated from open-southeners/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.56 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
{
"name": "open-southeners/docker-php",
"description": "An unofficial SDK for Docker API written in PHP",
"license": "MIT",
"keywords": [
"open-southeners",
"docker",
"client",
"api"
],
"authors": [
{
"name": "Ruben Robles",
"email": "[email protected]",
"homepage": "https://d8vjork.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/open-southeners"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"open-southeners/laravel-helpers": "~0.13",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message": "^1.0",
"psr/http-factory": "^1.0",
"php-http/socket-client": "^2.0",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"guzzlehttp/guzzle": "^7.1",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"OpenSoutheners\\Docker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OpenSoutheners\\Docker\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}