-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 808 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "ibra-akv/php-docker-client",
"description": "Docker API driver for PHP.",
"type": "library",
"homepage": "https://github.com/ibra-akv/php-docker-client",
"license": "MIT",
"authors": [
{
"name": "Ibragim Abubakarov",
"email": "ibragim.ai95@gmail.com"
}
],
"autoload": {
"psr-4": {
"IterativeCode\\Component\\DockerClient\\": "src/",
"IterativeCode\\Component\\DockerClient\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.3",
"ext-curl": "*",
"ext-json": "*",
"symfony/http-client": ">=4.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"pcov/clobber": "^2.0",
"php-coveralls/php-coveralls": "^2.5"
}
}