Skip to content

Commit f527ab2

Browse files
committed
Add content
1 parent 7ce99ae commit f527ab2

18 files changed

+2260
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
.idea/

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "geekstuff-it/docker-php-buildtools-alpine-dockerizer",
3+
"description": "This repo helps dockerize a php project, for dev and packaged image into separate fpm nginx boxes.",
4+
"autoload": {
5+
"psr-4": {
6+
"GeekStuff\\Dockerizer\\": "src/"
7+
}
8+
},
9+
"config": {
10+
"platform": {
11+
"php": "7.2.5"
12+
}
13+
},
14+
"require": {
15+
"php": ">= 7.2.5",
16+
"ext-json": "*",
17+
"symfony/console": "^5.1",
18+
"symfony/finder": "^5.1",
19+
"twig/twig": "^3.0",
20+
"symfony/filesystem": "^5.1",
21+
"symfony/http-client": "^5.1",
22+
"symfony/process": "^5.1"
23+
}
24+
}

0 commit comments

Comments
 (0)