Skip to content

Commit

Permalink
Allow HTTP access to lib
Browse files Browse the repository at this point in the history
Normally composer wont allow fetching packages over HTTP, but we need
to do it as the HTTPS results in a certificate error. Likely this is
caused by obsoleted root certificates in the base image, but don't
want to mess with that right now.
  • Loading branch information
xendk committed Jan 13, 2022
1 parent 39df498 commit 0b52151
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"name": "mdbitz/hapi",
"version": "1.1.1",
"dist": {
"url": "https://mdbitz.com/wp-content/uploads/2010/10/HaPi-1.1.1.zip",
"url": "http://mdbitz.com/wp-content/uploads/2010/10/HaPi-1.1.1.zip",
"type": "zip"
}
}
Expand All @@ -54,7 +54,8 @@
]
},
"config": {
"bin-dir": "bin"
"bin-dir": "bin",
"secure-http": false
},
"extra": {
"symfony-app-dir": "app",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0b52151

Please sign in to comment.