Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.0.0 #27

Merged
merged 16 commits into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
FROM silintl/php7:7.2
MAINTAINER Mark Tompsett <[email protected]>
FROM php:7.3-apache-buster
LABEL maintainer="Mark Tompsett <[email protected]>"

ENV REFRESHED_AT 2020-05-07

# Fix timezone stuff from hanging.
RUN apt-get update -y && echo "America/New_York" > /etc/timezone; \
apt-get install -y tzdata
ENV REFRESHED_AT 2021-03-24

# Make sure apt has current list/updates
RUN apt-get update -y \
# Fix timezone stuff from hanging.
&& echo "Etc/UTC" > /etc/timezone \
&& apt-get install -y tzdata \
# Install necessary PHP building blocks
RUN apt-get install -y zip unzip make curl wget php
&& apt-get install -y zip unzip make curl wget \
# Clean up to reduce docker image size
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /data
WORKDIR /data
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Various PSR3-compatible logging adapters.
- This writes to stdout, bypassing any output buffering that PHP might be doing.

### Psr3Yii2Logger
- Make sure your Yii config bootstraps the `log` componenet. In other words,
- Make sure your Yii config bootstraps the `log` component. In other words,
include something like this in your Yii config:
`'bootstrap' => ['log']`
12 changes: 9 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
],
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0",
"php": "^7.2",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master",
"monolog/monolog": "^1.22",
"simplesamlphp/simplesamlphp": "^1.15.2",
Expand All @@ -31,5 +31,11 @@
"Sil\\Psr3Adapters\\": "src/",
"Sil\\Psr3Adapters\\tests\\": "tests/"
}
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}
Loading