-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 731 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 731 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
31
32
33
{
"name": "medeirosinacio/php-docker-run",
"type": "poc",
"version": "0.1",
"description": "Proof of concept for running the \"docker run\" command with PHP + Docker API",
"homepage": "https://github.com/medeirosinacio/php-docker-run",
"license": "MIT",
"authors": [
{
"name": "Douglas Medeiros",
"email": "eu@douglasmedeiros.dev"
}
],
"require": {
"php": ">=8.2",
"illuminate/support": "^9.48",
"illuminate/http": "^9.47",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": ">=9.0.2"
},
"autoload": {
"psr-4": {
"medeirosinacio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"medeirosinacio\\Test\\": "tests/"
}
}
}