Skip to content
This repository was archived by the owner on Sep 15, 2019. It is now read-only.

Commit 1a2093f

Browse files
initial
0 parents  commit 1a2093f

File tree

12 files changed

+2467
-0
lines changed

12 files changed

+2467
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

LICENSE.md

Whitespace-only changes.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Laravel Docker Presets

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "jasonmccallister/laravel-docker-preset",
3+
"description": "My default setup for shipping Laravel projects on Docker",
4+
"require": {
5+
"laravel/framework": "^5.8"
6+
},
7+
"license": "MIT",
8+
"authors": [{
9+
"name": "Jason McCallister",
10+
"email": "jason@mccallister.io"
11+
}],
12+
"autoload": {
13+
"psr-4": {
14+
"JasonMcCallister\\DockerPreset\\": "src/"
15+
}
16+
},
17+
"extra": {
18+
"laravel": {
19+
"providers": [
20+
"JasonMcCallister\\DockerPreset\\DockerPresetServiceProvider"
21+
]
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)