Skip to content

Commit

Permalink
Merge branch 'main' into add-days-and-hours
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 authored Mar 21, 2021
2 parents 4227d10 + 14c4a26 commit eae013b
Show file tree
Hide file tree
Showing 17 changed files with 347 additions and 384 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ RUN composer install --optimize-autoloader --prefer-dist --no-progress --no-inte
FROM php:7.4-cli-alpine AS phing
MAINTAINER Phing <info@phing.info>

RUN mkdir /app
WORKDIR /app

ADD bin/phing* bin/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1><img width="30" src="https://raw.githubusercontent.com/phingofficial/phing-github-action/main/action.svg"/>P H I N G</h1>
<h1><img alt="Phing Logo" width="30" src="https://raw.githubusercontent.com/phingofficial/phing-github-action/main/action.svg"/>P H I N G</h1>

![Phing CI](https://github.com/phingofficial/phing/workflows/Phing%20CI/badge.svg?branch=main)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/phingofficial/phing/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/phingofficial/phing/?branch=main)
Expand Down
5 changes: 4 additions & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ that you might stumble across when upgrading from Phing 2 to 3.
* Phing now requires at least PHP 7.3.
* All Phing code is now namespaced. This means that existing references to classes
that existed in earlier Phing versions will no longer work. For example, the
class `PhingFile` has been moved to `Phing\Io\File`.
class `PhingFile` has been moved to `Phing\Io\File`. If you are used to providing
a specific logger or listener when running Phing (such as `phing.listener.DefaultLogger`),
you will need to adjust this (to `Phing\Listener\DefaultLogger`, for example).
The documentation has been modified to reflect this.
* Support for dot-path classnames (i.e., `foo.bar.FooBar`) has been removed.
* Omitting the `basedir` property in the root `project` tag now means "." instead
of the current working directory. This effectively reverts the change made in
Expand Down
Loading

0 comments on commit eae013b

Please sign in to comment.